aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/hook.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2023-01-13 19:52:00 -0500
committerGitHub <noreply@github.com>2023-01-13 19:52:00 -0500
commit33167a30249f8f1900933addeb297cf7de67d0f0 (patch)
treed9695c35a4ade1839c7f8218ce1c7976e149537b /lib/compilers/hook.ts
parent07f37abe76a042a4e5a4c630f02840447981f739 (diff)
downloadcompiler-explorer-33167a30249f8f1900933addeb297cf7de67d0f0.tar.gz
compiler-explorer-33167a30249f8f1900933addeb297cf7de67d0f0.zip
Tsify main (#4520)gh-5796
Diffstat (limited to 'lib/compilers/hook.ts')
-rw-r--r--lib/compilers/hook.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/hook.ts b/lib/compilers/hook.ts
index 10443c189..3e6c08773 100644
--- a/lib/compilers/hook.ts
+++ b/lib/compilers/hook.ts
@@ -24,12 +24,11 @@
import path from 'path';
+import {ParsedAsmResultLine} from '../../types/asmresult/asmresult.interfaces';
import {CompilationResult, ExecutionOptions} from '../../types/compilation/compilation.interfaces';
import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces';
import {BaseCompiler} from '../base-compiler';
-import {AsmResultSource, ParsedAsmResultLine} from '../../types/asmresult/asmresult.interfaces';
-
export class HookCompiler extends BaseCompiler {
static get key(): string {
return 'hook';