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_ << ' ' << '(';