void CYField::Output(CYOutput &out) const {
}
-void CYImport::Output(CYOutput &out, CYFlags flags) const {
- out << "@import";
-}
-
void CYInstanceLiteral::Output(CYOutput &out, CYFlags flags) const {
out << '#';
number_->Output(out, CYRight(flags));
out << code_;
}
-void CYModule::Output(CYOutput &out) const {
- out << part_;
- if (next_ != NULL)
- out << '.' << next_;
-}
-
void CYBox::Output(CYOutput &out, CYFlags flags) const {
out << '@';
value_->Output(out, Precedence(), CYRight(flags));