Allow to step into inline functions while debugging Android app (KT-12896)

#KT-12896 In Progress
This commit is contained in:
Nikolay Krasko
2016-07-21 19:00:16 +03:00
parent 2a2d7cd358
commit 64979ae190
6 changed files with 66 additions and 4 deletions
@@ -0,0 +1,10 @@
package dexInline
fun main(args: Array<String>) {
//Breakpoint!
myPrint("OK")
}
inline fun myPrint(s: String) {
val z = s;
}