bf890a1540
- Make it extendable and easier to parse - Allow to create additional function breakpoints
18 lines
346 B
Kotlin
Vendored
18 lines
346 B
Kotlin
Vendored
// FILE: stopInInlineInOtherFile.kt
|
|
package stopInInlineInOtherFile
|
|
|
|
fun main(args: Array<String>) {
|
|
inlineFun()
|
|
}
|
|
|
|
// ADDITIONAL_BREAKPOINT: stopInInlineInOtherFile.Other.kt / Breakpoint 1
|
|
|
|
// FILE: stopInInlineInOtherFile.Other.kt
|
|
package stopInInlineInOtherFile
|
|
|
|
inline fun inlineFun() {
|
|
var i = 1
|
|
// Breakpoint 1
|
|
i++
|
|
i++
|
|
} |