X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/e013809d7a06e37dcbf21c340febecda46ba0caf..51ac63c5d3635ca302ead91b42a7df4c0340428a:/Output.cpp diff --git a/Output.cpp b/Output.cpp index 552768b..d6c3a03 100644 --- a/Output.cpp +++ b/Output.cpp @@ -326,7 +326,7 @@ void CYDeclarations::Output(CYOutput &out, CYFlags flags) const { } void CYDirectMember::Output(CYOutput &out, CYFlags flags) const { - object_->Output(out, Precedence(), CYLeft(flags)); + object_->Output(out, Precedence(), CYLeft(flags) | CYNoInteger); if (const char *word = property_->Word()) out << '.' << word; else @@ -432,8 +432,6 @@ void CYFunction::Output(CYOutput &out, CYFlags flags) const { if (protect) out << '('; out << "function"; - if (out.options_.verbose_) - out.out_ << ':' << static_cast(this); if (name_ != NULL) out << ' ' << *name_; out << '(' << parameters_ << ')';