]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Rename CYForEachIn to CYForOf to better match ECMA6.
[cycript.git] / Output.cpp
index 752d8a9ed6f250897c0b3070e254fefc8397ac51..53d5bfe14aa04c70326d2e22f033297e0905e81d 100644 (file)
@@ -356,14 +356,14 @@ void CYFor::Output(CYOutput &out, CYFlags flags) const {
     code_->Single(out, CYRight(flags));
 }
 
-void CYForEachIn::Output(CYOutput &out, CYFlags flags) const {
+void CYForOf::Output(CYOutput &out, CYFlags flags) const {
     out << "for" << ' ' << "each" << ' ' << '(';
     initialiser_->ForIn(out, CYNoIn);
     out << "in" << *set_ << ')';
     code_->Single(out, CYRight(flags));
 }
 
-void CYForEachInComprehension::Output(CYOutput &out) const {
+void CYForOfComprehension::Output(CYOutput &out) const {
     out << "for" << ' ' << "each" << ' ' << '(' << *name_ << ' ' << "in" << ' ' << *set_ << ')' << next_;
 }