mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Generate TABLESWITCH/LOOKUPSWITCH bytecode operation for when operator by String constants
16 lines
257 B
Kotlin
Vendored
16 lines
257 B
Kotlin
Vendored
|
|
fun foo() : Int {
|
|
val x : String = "dsa"
|
|
when (x) {
|
|
"a" -> return 1
|
|
"b" -> return 1
|
|
"c" -> return 1
|
|
"d" -> return 1
|
|
"e" -> return 1
|
|
"f" -> return 1
|
|
else -> return -1
|
|
}
|
|
}
|
|
|
|
// 1 TABLESWITCH
|