step method
void
step()
Run one step of the virtual machine. This method is not very useful except in special cases; usually you will use runUntilDone (above) instead.
Implementation
void step() {
try {
compile();
vm!.step();
} on MiniscriptException catch (e) {
reportError(e);
stop();
}
}