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