compile method

void compile(
  1. StringBuffer buf
)

Implementation

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