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/pascal.js | |
parent | 493188661dd2b40384f1fd429daaf0a4dc1278d9 (diff) | |
download | compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.tar.gz compiler-explorer-670afd8921d46956cc3d43dd34078c2dc984faf2.zip |
Move to ESLint
Somewhat compilant!
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 3aeb3a8d7..ad6d1f8f6 100644 --- a/lib/compilers/pascal.js +++ b/lib/compilers/pascal.js @@ -54,7 +54,7 @@ class FPCCompiler extends BaseCompiler { return result; } - optionsForFilter(filters, outputFilename, userOptions) { + optionsForFilter(filters) { let options = ['-g', '-al']; if (this.compiler.intelAsm && filters.intel && !filters.binary) { @@ -66,7 +66,7 @@ class FPCCompiler extends BaseCompiler { return options; } - getOutputFilename(dirPath, outputFilebase) { + getOutputFilename(dirPath) { return path.join(dirPath, `${path.basename(this.compileFilename, this.lang.extensions[0])}.s`); } |