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