diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-01-18 19:46:02 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-01-18 19:46:02 +0100 |
commit | d493dfb7ccff1346fe4a7fc8329645d6d4425d0c (patch) | |
tree | a8386537da5180573edc0f5fc6d9ed8892340eb2 /lib/compilers/pascal.js | |
parent | a54faefb4c8668d9c9f93c78bd6bc639d1f0c219 (diff) | |
download | compiler-explorer-d493dfb7ccff1346fe4a7fc8329645d6d4425d0c.tar.gz compiler-explorer-d493dfb7ccff1346fe4a7fc8329645d6d4425d0c.zip |
Format code
Diffstat (limited to 'lib/compilers/pascal.js')
-rw-r--r-- | lib/compilers/pascal.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/compilers/pascal.js b/lib/compilers/pascal.js index cfe4065cf..35bf61b49 100644 --- a/lib/compilers/pascal.js +++ b/lib/compilers/pascal.js @@ -45,7 +45,7 @@ class FPCCompiler extends BaseCompiler { } } - postProcessAsm(result, filters) { + postProcessAsm(result, filters) { if (!result.okToCache) return result; if (filters.binary) { @@ -113,7 +113,8 @@ class FPCCompiler extends BaseCompiler { "program prog; " + "uses " + unitName + " in '" + this.compileFilename + "'; " + "begin " + - "end.", () => {}); + "end.", () => { + }); } runCompiler(compiler, options, inputFilename, execOptions) { @@ -149,6 +150,7 @@ class FPCCompiler extends BaseCompiler { return argumentParsers.Base; } } + /*function compileFPC(info, env) { const demangler = new PascalDemangler(); const compiler = new Compile(info, env); |