aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/kotlin.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2024-01-21 10:29:58 -0600
committerGitHub <noreply@github.com>2024-01-21 10:29:58 -0600
commite5fb8e1afc518a3d21a56a3cabf39d24c7f31f14 (patch)
treeea59f9d3e4954bcd5022a7f1aad07ba7bebdacd3 /lib/compilers/kotlin.ts
parent163605aca0c704fe878138d80cbb9edb73c62f51 (diff)
downloadcompiler-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.ts3
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';
}