Debugger: fix breakpoints inside inline functions in libraries sources

This commit is contained in:
Natalia Ukhorskaya
2016-04-06 15:25:59 +03:00
parent 3ef51159b8
commit 8e3ec5b7f0
7 changed files with 62 additions and 14 deletions
@@ -2,4 +2,12 @@ package customLib.inlineFunInLibrary
public inline fun inlineFun(f: () -> Unit) {
1 + 1
inlineFunInner {
1 + 1
}
}
public inline fun inlineFunInner(f: () -> Unit) {
// Breakpoint 2
1 + 1
}