startRunningProgram method Null safety

  1. @override
void startRunningProgram(
  1. 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;
}