]> git.saurik.com Git - cycript.git/blobdiff - ObjectiveC/Output.cpp
I do not remember why this was so overly complex.
[cycript.git] / ObjectiveC / Output.cpp
index fd2a8d81747e824285e8d60b4903c76d0584dadf..6fd2229abbe28b64f3bbbe296f4c1c681a8d0a42 100644 (file)
@@ -94,6 +94,12 @@ void CYMessage::Output(CYOutput &out, bool replace) const {
     out << code_;
 }
 
+void CYModule::Output(CYOutput &out) const {
+    out << part_;
+    if (next_ != NULL)
+        out << '.' << next_;
+}
+
 void CYBox::Output(CYOutput &out, CYFlags flags) const {
     out << '@';
     value_->Output(out, Precedence(), CYRight(flags));