repl method

void repl(
  1. String line
)

Implementation

void repl(String line) {
  parse(line);
  final tac.Machine vm = createVM(null);
  while (!vm.done) {
    vm.step();
  }
}