We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 232bd45 commit 1214a20Copy full SHA for 1214a20
core/src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt
@@ -71,6 +71,7 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
71
var javaParameters: Boolean = false
72
73
/** Use the IR backend */
74
+ @Deprecated("Since Kotlin 1.9.20 this option is no longer supported by the compiler. It has no effect.")
75
var useIR: Boolean = false
76
77
/** Use the old JVM backend */
@@ -304,7 +305,6 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
304
305
306
args.jvmTarget = jvmTarget
307
args.javaParameters = javaParameters
- args.useIR = useIR
308
args.useOldBackend = useOldBackend
309
310
if(javaModulePath != null)
0 commit comments