diff options
Diffstat (limited to 'lib/compilers/pascal.ts')
-rw-r--r-- | lib/compilers/pascal.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/pascal.ts b/lib/compilers/pascal.ts index 2527ed019..c31459486 100644 --- a/lib/compilers/pascal.ts +++ b/lib/compilers/pascal.ts @@ -115,7 +115,7 @@ export class FPCCompiler extends BaseCompiler { demangle, staticReloc: boolean, dynamicReloc: boolean, - filters: ParseFiltersAndOutputOptions, + filters: ParseFiltersAndOutputOptions ) { const dirPath = path.dirname(outputFilename); const execBinary = this.getExecutableFilename(dirPath); @@ -152,7 +152,7 @@ export class FPCCompiler extends BaseCompiler { 'program prog;\n' + 'uses ' + unitName + ' in \'' + unitPath + '\';\n' + 'begin\n' + - 'end.\n', + 'end.\n' ); } @@ -186,7 +186,7 @@ export class FPCCompiler extends BaseCompiler { compiler: string, options: string[], inputFilename: string, - execOptions: ExecutionOptions, + execOptions: ExecutionOptions ) { if (!execOptions) { execOptions = this.getDefaultExecOptions(); |