Debugger: do not put breakpoints at lines from another file in case of inline function
This commit is contained in:
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
package inlineFunctionBreakpointAnotherFile
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val a1 = 1
|
||||
val a2 = 1
|
||||
val a3 = 1
|
||||
|
||||
inlineFunctionWithBreakpoint.myFun {
|
||||
val a = 1
|
||||
}
|
||||
}
|
||||
|
||||
// ADDITIONAL_BREAKPOINT: inlineFunctionWithBreakpoint.kt:inline fun myFun
|
||||
@@ -0,0 +1,5 @@
|
||||
package inlineFunctionWithBreakpoint
|
||||
|
||||
inline fun myFun(f: (Int) -> Unit) {
|
||||
f(1)
|
||||
}
|
||||
Reference in New Issue
Block a user