aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/java.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/java.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/java.ts')
-rw-r--r--lib/compilers/java.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/java.ts b/lib/compilers/java.ts
index a12af2398..a2e027751 100644
--- a/lib/compilers/java.ts
+++ b/lib/compilers/java.ts
@@ -30,7 +30,7 @@ import type {ParsedAsmResult, ParsedAsmResultLine} from '../../types/asmresult/a
import type {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js';
import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js';
import {unwrap} from '../assert.js';
-import {BaseCompiler} from '../base-compiler.js';
+import {BaseCompiler, SimpleOutputFilenameCompiler} from '../base-compiler.js';
import {logger} from '../logger.js';
import * as utils from '../utils.js';
@@ -38,7 +38,7 @@ import {JavaParser} from './argument-parsers.js';
import {BypassCache} from '../../types/compilation/compilation.interfaces.js';
import {ExecutableExecutionOptions} from '../../types/execution/execution.interfaces.js';
-export class JavaCompiler extends BaseCompiler {
+export class JavaCompiler extends BaseCompiler implements SimpleOutputFilenameCompiler {
static get key() {
return 'java';
}