110111112113114115116117
private void write(String string) throws CompilerException { try { w.write(string); } catch (IOException e) { throw new CompilerException(e); } }
118119120121122123124125
private void write(char c) throws CompilerException { try { w.write(c); } catch (IOException e) { throw new CompilerException(e); } }
129130131132133134135136
w.write('\n'); for (int i = 0; i < indent; i++) { w.write(' '); } } catch (IOException e) { throw new CompilerException(e); } }