From f060b1bac929c0ededff180ad053db1b4a7ec2c9 Mon Sep 17 00:00:00 2001 From: Nilay Majorwar Date: Fri, 17 Dec 2021 16:10:43 +0530 Subject: [PATCH] Minor cosmetic change --- engines/execution-controller.ts | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) 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;