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/swift.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/swift.js')
-rw-r--r-- | lib/compilers/swift.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/swift.js b/lib/compilers/swift.js index 884828852..ffd39a295 100644 --- a/lib/compilers/swift.js +++ b/lib/compilers/swift.js @@ -1,8 +1,8 @@ const Compile = require('../base-compiler'), logger = require('../logger').logger; -function compileSwift(info, env) { - const compiler = new Compile(info, env); +function compileSwift(info, env, langId) { + const compiler = new Compile(info, env, langId); compiler.handlePostProcessResult = function (result, postResult) { result.asm = postResult.stdout; |