aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/haskell.js
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2017-12-22 08:01:33 -0600
committerMatt Godbolt <matt@godbolt.org>2017-12-22 08:01:33 -0600
commitd085bac7084cf7e18a03e9f9fea47bae01223e82 (patch)
treeaf2f365d1c10d860cdea080b0bb071a3c2d13b4b /lib/compilers/haskell.js
parent87afc3aa67e6e169fcc41cb7437e05f9261050ea (diff)
downloadcompiler-explorer-d085bac7084cf7e18a03e9f9fea47bae01223e82.tar.gz
compiler-explorer-d085bac7084cf7e18a03e9f9fea47bae01223e82.zip
Remove explicit langid, as it's part of the compiler config already
Diffstat (limited to 'lib/compilers/haskell.js')
-rw-r--r--lib/compilers/haskell.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/haskell.js b/lib/compilers/haskell.js
index 78963748e..a4080192f 100644
--- a/lib/compilers/haskell.js
+++ b/lib/compilers/haskell.js
@@ -1,7 +1,7 @@
var Compile = require('../base-compiler');
-function compileHaskell(info, env, langId) {
- var compiler = new Compile(info, env, langId);
+function compileHaskell(info, env) {
+ var compiler = new Compile(info, env);
compiler.optionsForFilter = function (filters, outputFilename, userOptions) {
return ['-S', '-g', '-o', this.filename(outputFilename)];
};