ea9572ad28
non-specialized progressions, including "step" progressions. DefaultProgressionHandler uses the "first/last/step" properties of the progression when building the loop header.
11 lines
120 B
Kotlin
Vendored
11 lines
120 B
Kotlin
Vendored
fun f() {
|
|
for (i in 1..2) {
|
|
}
|
|
}
|
|
|
|
// 0 iterator
|
|
// 0 getStart
|
|
// 0 getEnd
|
|
// 0 getFirst
|
|
// 0 getLast
|
|
// 0 getStep |