public void WriteBlockStart(CodeGenBlockType blockType) { Output.WriteLine(); WriteIndent(); Output.WriteLine("{"); _indent += 4; }
public void WriteBlockEnd(CodeGenBlockType blockType) { _indent -= 4; WriteIndent(); Output.WriteLine("}"); }