diff options
author | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
commit | 63ed0e79c5ab12da3b697b04b41f8075c8b79f87 (patch) | |
tree | 325e699af0a6068655e2695839b9109416b935f6 /lib/compilers/golang.js | |
parent | c1ff139b6a52c7299961b26b4f5b1af5b0111765 (diff) | |
download | compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.tar.gz compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.zip |
Change enough stuff as to get it running
Not saying it works, but if you hack few more things, you can start
to use it. Commiting just in case
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 a60920892..27ec62a40 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -25,8 +25,8 @@ var Compile = require('../base-compiler'); var _ = require('underscore-node'); -function compilenewgol(info, env) { - var compiler = new Compile(info, env); +function compilenewgol(info, env, langId) { + var compiler = new Compile(info, env, langId); compiler.originalGetDefaultExecOptions = compiler.getDefaultExecOptions; function convertNewGoL(code) { |