} }
-void CYComment::Output(CYOutput &out, CYFlags flags) const {
- out << '\r';
- out(value_);
- out.right_ = true;
- out << '\r';
-}
-
void CYCompound::Output(CYOutput &out, CYFlags flags) const {
if (next_ == NULL)
expression_->Output(out, flags);
Multiple(out);
}
+void CYTemplate::Output(CYOutput &out, CYFlags flags) const {
+ _assert(false);
+}
+
void CYTypeArrayOf::Output(CYOutput &out, CYIdentifier *identifier) const {
next_->Output(out, Precedence(), identifier);
out << '[';
rhs_->Output(out, Precedence(), CYRight(flags));
}
-void CYProgram::Output(CYOutput &out) const {
+void CYScript::Output(CYOutput &out) const {
out << code_;
}