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 @@ -30,6 +30,7 @@ import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity.*
30
30
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
31
31
import org.jetbrains.kotlin.cli.common.messages.MessageUtil
32
32
import org.jetbrains.kotlin.cli.js.klib.*
33
+ import org.jetbrains.kotlin.cli.jvm.K2JVMCompiler.K2JVMCompilerPerformanceManager
33
34
import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles
34
35
import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment
35
36
import org.jetbrains.kotlin.cli.jvm.plugins.PluginCliParser
@@ -96,9 +97,9 @@ private class DisposableZipFileSystemAccessor private constructor(
96
97
}
97
98
98
99
class K2JsIrCompiler : CLICompiler <K2JSCompilerArguments >() {
100
+ class K2JsIrCompilerPerformanceManager : CommonCompilerPerformanceManager (" Kotlin to JS (IR) Compiler" )
99
101
100
- override val defaultPerformanceManager: CommonCompilerPerformanceManager =
101
- object : CommonCompilerPerformanceManager (" Kotlin to JS (IR) Compiler" ) {}
102
+ override val defaultPerformanceManager: CommonCompilerPerformanceManager = K2JsIrCompilerPerformanceManager ()
102
103
103
104
override fun createArguments (): K2JSCompilerArguments {
104
105
return K2JSCompilerArguments ()
You can’t perform that action at this time.
0 commit comments