diff options
author | nickpdemarco <nickpdemarco@gmail.com> | 2023-10-11 14:43:05 -0400 |
---|---|---|
committer | nickpdemarco <nickpdemarco@gmail.com> | 2023-10-11 14:43:05 -0400 |
commit | 9cda199e40c920fcc9c53082b0dabb17d31a8b7f (patch) | |
tree | a4e9a03a9feea17376f5990e19c12818d32ec95e /lib/compilers/racket.ts | |
parent | 55a2b1455f823026c78b9219f93799af00ef60ae (diff) | |
parent | 10796b3696cf1eef928de8c750b4d3350ee0c2db (diff) | |
download | compiler-explorer-9cda199e40c920fcc9c53082b0dabb17d31a8b7f.tar.gz compiler-explorer-9cda199e40c920fcc9c53082b0dabb17d31a8b7f.zip |
Merge main, resolve conflicts with vala
Diffstat (limited to 'lib/compilers/racket.ts')
-rw-r--r-- | lib/compilers/racket.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/racket.ts b/lib/compilers/racket.ts index 9c808dba7..0811058d1 100644 --- a/lib/compilers/racket.ts +++ b/lib/compilers/racket.ts @@ -41,7 +41,7 @@ export class RacketCompiler extends BaseCompiler { super( { // Disable output filters, as they currently don't do anything - disabledFilters: ['labels', 'directives', 'commentOnly', 'trim'], + disabledFilters: ['labels', 'directives', 'commentOnly', 'trim', 'debugCalls'], ...info, }, env, @@ -74,7 +74,7 @@ export class RacketCompiler extends BaseCompiler { compiler: string, options: string[], inputFilename: string, - execOptions: ExecutionOptions, + execOptions: ExecutionOptions & {env: Record<string, string>}, ): Promise<CompilationResult> { if (!execOptions) { execOptions = this.getDefaultExecOptions(); @@ -123,7 +123,7 @@ export class RacketCompiler extends BaseCompiler { return result; } - override processAsm(result: any, filters: any, options: any) { + override async processAsm(result: any, filters: any, options: any) { // TODO: Process and highlight decompiled output return { asm: [{text: result.asm}], |