diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-03-24 01:44:17 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-03-24 01:44:17 +0100 |
commit | 0601eecc4cbb72cc21326c6f6b7d55675fba7588 (patch) | |
tree | 955078bb8818c14201ffe87e92367d1b8167c073 /lib/compilers/ldc.js | |
parent | 8a38293a22d9f657f8b94a7cf2e31cb9985068d8 (diff) | |
download | compiler-explorer-0601eecc4cbb72cc21326c6f6b7d55675fba7588.tar.gz compiler-explorer-0601eecc4cbb72cc21326c6f6b7d55675fba7588.zip |
Fix tests
I forgot to run the hook installation after a clean reclone...
Diffstat (limited to 'lib/compilers/ldc.js')
-rw-r--r-- | lib/compilers/ldc.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compilers/ldc.js b/lib/compilers/ldc.js index b94c4bc71..2247ab2e7 100644 --- a/lib/compilers/ldc.js +++ b/lib/compilers/ldc.js @@ -25,7 +25,8 @@ const BaseCompiler = require('../base-compiler'), argumentParsers = require("./argument-parsers"), compilerOptInfo = require("compiler-opt-info"), - fs = require('fs-extra'); + fs = require('fs-extra'), + logger = require('./../logger').logger; class LDCCompiler extends BaseCompiler { constructor(info, env) { @@ -83,7 +84,7 @@ class LDCCompiler extends BaseCompiler { return fs.readFileSync(astFilename, 'utf-8'); } - processOptOutput(hasOptOutput, optPath, demangle) { + processOptOutput(hasOptOutput, optPath) { let output = []; return new Promise(resolve => { fs.createReadStream(optPath, {encoding: "utf-8"}) |