diff --git a/engines/execution-controller.ts b/engines/execution-controller.ts index 22cabba..5a025e4 100644 --- a/engines/execution-controller.ts +++ b/engines/execution-controller.ts @@ -91,6 +91,16 @@ class ExecutionController { ); } + /** + * Run a single step of execution + * @returns Result of execution + */ + executeStep(): StepExecutionResult { + this._result = this._engine.executeStep(); + this._result.signal = "paused"; + return this._result; + } + /** * Execute the loaded program until stopped. * @param param0.interval Interval between two execution steps @@ -99,7 +109,6 @@ class ExecutionController { async executeAll({ interval, onResult }: ExecuteAllArgs) { // Clear paused state this._isPaused = false; - console.log(interval); // Run execution loop using an Interval this._execInterval = setInterval(() => { @@ -142,16 +151,6 @@ class ExecutionController { return false; } - - /** - * Run a single step of execution - * @returns Result of execution - */ - executeStep(): StepExecutionResult { - this._result = this._engine.executeStep(); - this._result.signal = "paused"; - return this._result; - } } export default ExecutionController;