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
+8
View File
@@ -0,0 +1,8 @@
LineBreakpoint created at dexInline.kt:5
!JDK_HOME!\bin\java -agentlib:jdwp=transport=dt_socket,address=!HOST_NAME!:!HOST_PORT!,suspend=y,server=n -Dfile.encoding=!FILE_ENCODING! -classpath !OUTPUT_PATH!;!KOTLIN_RUNTIME!;!CUSTOM_LIBRARY!;!RT_JAR! dexInline.DexInlineKt
Connected to the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket'
dexInline.kt:5
dexInline.kt:9
Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket'
Process finished with exit code 0
@@ -0,0 +1,10 @@
package dexInline
fun main(args: Array<String>) {
//Breakpoint!
myPrint("OK")
}
inline fun myPrint(s: String) {
val z = s;
}