We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a88a226 commit bbf5ce7Copy full SHA for bbf5ce7
transpiler/java/com/google/j2cl/transpiler/frontend/kotlin/lower/LoweringPasses.kt
@@ -200,10 +200,8 @@ private val loweringPhase = loweringPhase {
200
perFileLowering(::SingletonReferencesLowering)
201
// Reconstruct `for-loop` node for iterations over array and non-overflowing ranges.
202
perFileLowering(::CreateForLoopLowering)
203
- printIr("before")
204
// Fix variable scoping in do..while loops.
205
perFileLowering(::DoWhileLoopLowering)
206
- printIr("after")
207
// Convert some `when` statements to a `switch` java-like statement.
208
perFileLowering(::CreateSwitchLowering)
209
// Lower Kotlin annotation in a Java-like format expected by the J2CL ast.
0 commit comments