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