X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/4d3ff0620d59450567fc334325ce99e3ebc89563..db2cc900d3756ae83a1ce9ecf3e6d9733fc747d3:/ObjectiveC/Output.cpp diff --git a/ObjectiveC/Output.cpp b/ObjectiveC/Output.cpp index a65e386..37f86b1 100644 --- a/ObjectiveC/Output.cpp +++ b/ObjectiveC/Output.cpp @@ -77,6 +77,14 @@ void CYBox::Output(CYOutput &out, CYFlags flags) const { value_->Output(out, Precedence(), CYRight(flags)); } +void CYObjCArray::Output(CYOutput &out, CYFlags flags) const { + out << '@' << '[' << elements_ << ']'; +} + +void CYObjCDictionary::Output(CYOutput &out, CYFlags flags) const { + out << '@' << '{' << '}'; +} + void CYObjCBlock::Output(CYOutput &out, CYFlags flags) const { out << '^' << ' ' << *typed_ << ' ' << '(';