]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Move non-RegEx lexer hacks from Scanner to Parser.
[cycript.git] / Output.cpp
index 4506db614accb9be3ce02887db811e9ddf8dd4c8..22e2149dd85a47702d2b6348bb70fb42132b67db 100644 (file)
@@ -408,6 +408,13 @@ void CYForIn::Output(CYOutput &out, CYFlags flags) const {
     code_->Single(out, CYRight(flags), CYCompactShort);
 }
 
+void CYForInitialized::Output(CYOutput &out, CYFlags flags) const {
+    out << "for" << ' ' << '(' << "var" << ' ';
+    declaration_->Output(out, CYNoIn | CYNoRightHand);
+    out << ' ' << "in" << ' ' << *set_ << ')';
+    code_->Single(out, CYRight(flags), CYCompactShort);
+}
+
 void CYForInComprehension::Output(CYOutput &out) const {
     out << "for" << ' ' << '(';
     declaration_->Output(out, CYNoIn | CYNoRightHand);