aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/racket.ts
diff options
context:
space:
mode:
authorJ. Ryan Stinnett <jryans@gmail.com>2023-12-12 05:54:43 +0000
committerGitHub <noreply@github.com>2023-12-12 00:54:43 -0500
commit43bdf65d54add47a5a747093c203582378cb022d (patch)
tree541e5d517e38440c2bb6c772d209368d564655ec /lib/compilers/racket.ts
parentc2facf9662c74e9acccd1929d4396402c6b40402 (diff)
downloadcompiler-explorer-43bdf65d54add47a5a747093c203582378cb022d.tar.gz
compiler-explorer-43bdf65d54add47a5a747093c203582378cb022d.zip
Customise opt pipeline language by compiler (#5880)gh-9944
This allows each compiler to override the default Monaco language used by the opt pipeline view.
Diffstat (limited to 'lib/compilers/racket.ts')
-rw-r--r--lib/compilers/racket.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/racket.ts b/lib/compilers/racket.ts
index 909b4a790..cf92889a7 100644
--- a/lib/compilers/racket.ts
+++ b/lib/compilers/racket.ts
@@ -61,6 +61,7 @@ export class RacketCompiler extends BaseCompiler {
// Disable all options and filters, currently unsupported
supportedOptions: [],
supportedFilters: [],
+ monacoLanguage: 'scheme',
};
}
this.raco = this.compilerProps<string>(`compiler.${this.compiler.id}.raco`);