std::ostream &out_;
bool pretty_;
unsigned indent_;
+ bool right_;
enum {
NoMode,
out_(out),
pretty_(false),
indent_(0),
+ right_(false),
mode_(NoMode)
{
}
}
};
+struct CYComment :
+ CYStatement
+{
+ const char *value_;
+
+ CYComment(const char *value) :
+ value_(value)
+ {
+ }
+
+ virtual CYStatement *Replace(CYContext &context);
+ virtual void Output(CYOutput &out, CYFlags flags) const;
+};
+
struct CYLabel :
CYStatement
{