diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2024-01-21 10:29:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 10:29:58 -0600 |
commit | e5fb8e1afc518a3d21a56a3cabf39d24c7f31f14 (patch) | |
tree | ea59f9d3e4954bcd5022a7f1aad07ba7bebdacd3 /lib/compilers/kotlin.ts | |
parent | 163605aca0c704fe878138d80cbb9edb73c62f51 (diff) | |
download | compiler-explorer-e5fb8e1afc518a3d21a56a3cabf39d24c7f31f14.tar.gz compiler-explorer-e5fb8e1afc518a3d21a56a3cabf39d24c7f31f14.zip |
Improve typings for the now-global HandlerConfig (#6027)gh-10273
This PR populates types in the HandlerConfig
Diffstat (limited to 'lib/compilers/kotlin.ts')
-rw-r--r-- | lib/compilers/kotlin.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compilers/kotlin.ts b/lib/compilers/kotlin.ts index 51a8bb509..351552610 100644 --- a/lib/compilers/kotlin.ts +++ b/lib/compilers/kotlin.ts @@ -26,11 +26,12 @@ import {BypassCache} from '../../types/compilation/compilation.interfaces.js'; import type {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js'; import {ExecutableExecutionOptions} from '../../types/execution/execution.interfaces.js'; import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js'; +import {SimpleOutputFilenameCompiler} from '../base-compiler.js'; import {KotlinParser} from './argument-parsers.js'; import {JavaCompiler} from './java.js'; -export class KotlinCompiler extends JavaCompiler { +export class KotlinCompiler extends JavaCompiler implements SimpleOutputFilenameCompiler { static override get key() { return 'kotlin'; } |