]> git.saurik.com Git - cycript.git/blobdiff - ObjectiveC/Output.mm
Use explicit typed value for CYCatch error return.
[cycript.git] / ObjectiveC / Output.mm
index ecc8d1a4bdc77fc9f39cfb9d5a940c16d486f446..a2d765cbebc03164eacb03175fe22f46246b6388 100644 (file)
@@ -106,6 +106,14 @@ void CYBox::Output(CYOutput &out, CYFlags flags) const {
     value_->Output(out, Precedence(), CYRight(flags));
 }
 
+void CYObjCBlock::Output(CYOutput &out, CYFlags flags) const {
+    // XXX: this is seriously wrong
+    out << "^(";
+    out << ")";
+    out << "{";
+    out << "}";
+}
+
 void CYProtocol::Output(CYOutput &out) const {
     name_->Output(out, CYAssign::Precedence_, CYNoFlags);
     if (next_ != NULL)