aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/kotlin.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/kotlin.ts')
-rw-r--r--lib/compilers/kotlin.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/kotlin.ts b/lib/compilers/kotlin.ts
index 1a9adc258..dfc115b12 100644
--- a/lib/compilers/kotlin.ts
+++ b/lib/compilers/kotlin.ts
@@ -22,7 +22,7 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
-import {CompilerInfo} from '../../types/compiler.interfaces';
+import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces';
import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces';
import {KotlinParser} from './argument-parsers';
@@ -35,7 +35,7 @@ export class KotlinCompiler extends JavaCompiler {
javaHome: string;
- constructor(compilerInfo: CompilerInfo, env) {
+ constructor(compilerInfo: PreliminaryCompilerInfo, env) {
super(compilerInfo, env);
this.javaHome = this.compilerProps<string>(`compiler.${this.compiler.id}.java_home`);
}