From 66dc33c368e81349e2f795a4c008395000f07c10 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Thu, 29 Aug 2019 07:08:50 -0700 Subject: [PATCH] Remove unused code --- modern/src/maki-interpreter/virtualMachine.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modern/src/maki-interpreter/virtualMachine.js b/modern/src/maki-interpreter/virtualMachine.js index ee4b81e1..08aea200 100644 --- a/modern/src/maki-interpreter/virtualMachine.js +++ b/modern/src/maki-interpreter/virtualMachine.js @@ -59,11 +59,6 @@ export function run({ }); }); - const { commands /* variables */ } = program; - commands.forEach((/* command, i*/) => { - // printCommand({ i, command, stack: [], variables }); - }); - // Set the System global // TODO: We could confirm that this variable has the "system" flag set. program.variables[0].setValue(system);