]> git.saurik.com Git - cycript.git/blobdiff - Output.cpp
Started refactoring the identifier mechanism to sort on usage.
[cycript.git] / Output.cpp
index 26dc81fb1d7e33252ab427c9d46c9b12c9a38944..552768b38a838b20a3d3563859fe5b28c3699467 100644 (file)
@@ -293,6 +293,7 @@ void CYDeclaration::ForIn(CYOutput &out, CYFlags flags) const {
 
 void CYDeclaration::Output(CYOutput &out, CYFlags flags) const {
     out << *identifier_;
+    //out.out_ << ':' << identifier_->usage_ << '#' << identifier_->offset_;
     if (initialiser_ != NULL) {
         out << ' ' << '=' << ' ';
         initialiser_->Output(out, CYPA, CYRight(flags));