Exemplo n.º 1
0
 private void writeStatementBlock(StatementBlock block)
 {
     writeStatements(block.source);
     if (block.next != null)
     {
         writeBlock(block.next);
     }
 }
Exemplo n.º 2
0
 private void writeStatementBlock(StatementBlock block)
 {
     writeStatements(block.source);
     if (block.next != null)
         writeBlock(block.next);
 }