diff options
author | RabsRincon <ruben@rinconblanco.es> | 2019-05-29 17:58:17 +0200 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2019-05-29 17:58:17 +0200 |
commit | af24e16e8596e3ea812521f27b36a1e2dcf10b60 (patch) | |
tree | 5171f8bb6be677e5215f0f08d830c5558a83b677 /lib/compilers/pascal.js | |
parent | 8d24f9aede4acf35fb3e54c275fa7d902c0640b4 (diff) | |
download | compiler-explorer-af24e16e8596e3ea812521f27b36a1e2dcf10b60.tar.gz compiler-explorer-af24e16e8596e3ea812521f27b36a1e2dcf10b60.zip |
Initial stding support for the executor pane
Newlines are a matter of fixing the UI
Diffstat (limited to 'lib/compilers/pascal.js')
-rw-r--r-- | lib/compilers/pascal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/pascal.js b/lib/compilers/pascal.js index 5a7e82eae..2592db750 100644 --- a/lib/compilers/pascal.js +++ b/lib/compilers/pascal.js @@ -153,10 +153,10 @@ class FPCCompiler extends BaseCompiler { return result; } - execBinary(executable, result, maxSize) { + execBinary(executable, maxSize, executeParameters) { executable = this.getExecutableFilename(path.dirname(executable)); - return super.execBinary(executable, result, maxSize); + return super.execBinary(executable, maxSize, executeParameters); } getArgumentParser() { |