diff options
Diffstat (limited to 'lib/compilers/haskell.ts')
-rw-r--r-- | lib/compilers/haskell.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/haskell.ts b/lib/compilers/haskell.ts index c4cf6003e..7b20f2df4 100644 --- a/lib/compilers/haskell.ts +++ b/lib/compilers/haskell.ts @@ -24,7 +24,7 @@ import path from 'path'; -import {CompilerInfo} from '../../types/compiler.interfaces'; +import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces'; import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; import {BaseCompiler} from '../base-compiler'; @@ -35,7 +35,7 @@ export class HaskellCompiler extends BaseCompiler { return 'haskell'; } - constructor(info: CompilerInfo, env) { + constructor(info: PreliminaryCompilerInfo, env) { super(info, env); this.compiler.supportsHaskellCoreView = true; this.compiler.supportsHaskellStgView = true; |