diff options
author | partouf <partouf@gmail.com> | 2018-01-10 19:23:32 +0100 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2018-01-10 19:23:32 +0100 |
commit | ace5ee63ad336336d08c639a7c5aa5acd2dc024f (patch) | |
tree | fc8f7b82ebac80e9751c01a36a6d2a0f162464c8 /lib/compilers/assembly.js | |
parent | 3f2fe0849ea4ca55de7f9d968fbdc79465e0c825 (diff) | |
download | compiler-explorer-ace5ee63ad336336d08c639a7c5aa5acd2dc024f.tar.gz compiler-explorer-ace5ee63ad336336d08c639a7c5aa5acd2dc024f.zip |
bugfix
Diffstat (limited to 'lib/compilers/assembly.js')
-rw-r--r-- | lib/compilers/assembly.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/assembly.js b/lib/compilers/assembly.js index c4482f53a..e2f6d9d88 100644 --- a/lib/compilers/assembly.js +++ b/lib/compilers/assembly.js @@ -42,7 +42,7 @@ function compileAssembly(info, env) { return []; }; - Compile.prototype.runCompiler = function (compiler, options, inputFilename, execOptions) { + compiler.runCompiler = function (compiler, options, inputFilename, execOptions) { if (!execOptions) { execOptions = this.getDefaultExecOptions(); } |