startRunningProgram method Null safety
- covariant ProgramRunner newRunner
override
Called from the calculation part of an operation to cause a program to start running with the next instruction.
Implementation
@override
void startRunningProgram(ProgramRunner newRunner) {
newRunner._parent = this;
newRunner._caller = _caller;
newRunner.checkStartRunning();
_caller._pushedRunner = newRunner;
}