Files
kotlin-fork/js/js.translator/testData/box/inline/localInlineFunctionDeclaredInLambda.kt
T
2022-04-11 10:37:21 +00:00

57 lines
1.4 KiB
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1284
package foo
// CHECK_CONTAINS_NO_CALLS: localWithCapture except=Unit_getInstance
// CHECK_CONTAINS_NO_CALLS: localWithoutCapture
internal inline fun repeatAction(times: Int, action: () -> Unit) {
for (i in 1..times) {
action()
}
}
// CHECK_BREAKS_COUNT: function=localWithoutCapture count=0 TARGET_BACKENDS=JS_IR
// CHECK_LABELS_COUNT: function=localWithoutCapture name=$l$block count=0 TARGET_BACKENDS=JS_IR
internal fun localWithoutCapture(a: Int, b: Int): Int {
var mult = 0
repeatAction(a) {
inline fun inc(x: Int): Int {
return x + 1
}
repeatAction(b) {
mult = inc(mult)
}
}
return mult
}
// CHECK_BREAKS_COUNT: function=localWithCapture count=0 TARGET_BACKENDS=JS_IR
// CHECK_LABELS_COUNT: function=localWithCapture name=$l$block count=0 TARGET_BACKENDS=JS_IR
internal fun localWithCapture(a: Int, b: Int): Int {
var mult = 0
repeatAction(a) {
inline fun inc() {
mult++
}
repeatAction(b) {
inc()
}
}
return mult
}
fun box(): String {
assertEquals(2, localWithoutCapture(1, 2), "localWithoutCapture")
assertEquals(20, localWithoutCapture(4, 5), "localWithoutCapture")
assertEquals(2, localWithCapture(1, 2), "localWithCapture")
assertEquals(20, localWithCapture(4, 5), "localWithCapture")
return "OK"
}