compile method

void compile(
  1. StringBuffer buf
)

Implementation

void compile(StringBuffer buf) {
  while (_stack.isNotEmpty) {
    buf.writeln(_stack.removeFirst());
  }
}