]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Fixed serialization of function w/ CYNoLeader and implemented line tokenization for...
[cycript.git] / Output.cpp
index 3774a6ab87947e7c2a5807c0ca85a44f171dc486..a73b9c95866b4389f97760e39ff79027c0c1313f 100644 (file)
@@ -388,6 +388,8 @@ void CYLambda::Output(std::ostream &out, CYFlags flags) const {
     bool protect((flags & CYNoFunction) != 0);
     if (protect)
         out << '(';
+    else if ((flags & CYNoLeader) != 0)
+        out << ' ';
     out << "function";
     if (name_ != NULL)
         out << ' ' << *name_;