createVM method

Machine createVM([
  1. TextOutputMethod? standardOutput
])

Create a virtual machine loaded with the code we have parsed.

Implementation

tac.Machine createVM([TextOutputMethod? standardOutput]) {
  final tac.Context root = tac.Context(output!.code);
  return tac.Machine(root, standardOutput);
}