diff options
Diffstat (limited to 'lib/compilers/assembly.js')
-rw-r--r-- | lib/compilers/assembly.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/compilers/assembly.js b/lib/compilers/assembly.js index 6fa2971d0..dacc36322 100644 --- a/lib/compilers/assembly.js +++ b/lib/compilers/assembly.js @@ -34,13 +34,7 @@ class AssemblyCompiler extends BaseCompiler { constructor(info, env) { super(info, env); this.asm = new AsmRaw(); - - if (info.unitTestMode) { - this.initialise(); - return this; - } else { - return this.initialise(); - } + this.initResult = this.initialise(); } getArgumentParser() { |