File tree 1 file changed +3
-2
lines changed
compiler/cli/cli-js/src/org/jetbrains/kotlin/cli/js
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity.*
29
29
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
30
30
import org.jetbrains.kotlin.cli.common.messages.MessageUtil
31
31
import org.jetbrains.kotlin.cli.js.klib.*
32
+ import org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.K2JVMCompilerPerformanceManager
32
33
import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles
33
34
import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment
34
35
import org.jetbrains.kotlin.cli.jvm.plugins.PluginCliParser
@@ -84,9 +85,9 @@ private class DisposableZipFileSystemAccessor private constructor(
84
85
}
85
86
86
87
class K2JsIrCompiler : CLICompiler <K2JSCompilerArguments >() {
88
+ class K2JsIrCompilerPerformanceManager : CommonCompilerPerformanceManager (" Kotlin to JS (IR) Compiler" )
87
89
88
- override val defaultPerformanceManager: CommonCompilerPerformanceManager =
89
- object : CommonCompilerPerformanceManager (" Kotlin to JS (IR) Compiler" ) {}
90
+ override val defaultPerformanceManager: CommonCompilerPerformanceManager = K2JsIrCompilerPerformanceManager ()
90
91
91
92
override fun createArguments (): K2JSCompilerArguments {
92
93
return K2JSCompilerArguments ()
You can’t perform that action at this time.
0 commit comments