diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-02-13 14:49:07 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-02-13 14:49:07 +0100 |
commit | 670afd8921d46956cc3d43dd34078c2dc984faf2 (patch) | |
tree | abad242f7d63758cf5981d030540c93329271c31 /lib/compilers/golang.js | |
parent | 493188661dd2b40384f1fd429daaf0a4dc1278d9 (diff) | |
download | compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.tar.gz compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.zip |
Move to ESLint
Somewhat compilant!
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index a2052382b..c351757b9 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -51,13 +51,13 @@ class GolangCompiler extends BaseCompiler { })).join("\n"); } - postProcess(result, outputFilename, filters) { + postProcess(result) { result.asm = this.convertNewGoL(result.stdout); result.stdout = []; return Promise.resolve(result); } - optionsForFilter(filters, outputFilename, userOptions) { + optionsForFilter(filters, outputFilename) { // If we're dealing with an older version... if (this.compiler.id === '6g141') { return ['tool', '6g', '-g', '-o', outputFilename, '-S']; |