| LineBreakpoint created at frameAnonymousObject.kt:11 |
| !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! frameAnonymousObject.FrameAnonymousObjectKt |
| Connected to the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' |
| frameAnonymousObject.kt:11 |
| package frameAnonymousObject |
| |
| fun main(args: Array<String>) { |
| val val1 = 1 |
| val o = object { |
| val obProp = 1 |
| |
| fun run() { |
| foo { |
| //Breakpoint! |
| val1 + obProp |
| } |
| } |
| } |
| |
| o.run() |
| } |
| |
| fun foo(f: () -> Unit) { |
| f() |
| } |
| |
| // PRINT_FRAME |
| frame = invoke():11, FrameAnonymousObjectKt$main$o$1$run$1 {frameAnonymousObject} |
| this = this = {frameAnonymousObject.FrameAnonymousObjectKt$main$o$1$run$1@uniqueID}kotlin.jvm.functions.Function0<kotlin.Unit> |
| field = this$0: frameAnonymousObject.FrameAnonymousObjectKt$main$o$1 = {frameAnonymousObject.FrameAnonymousObjectKt$main$o$1@uniqueID} (sp = null) |
| field = obProp: int = 1 (sp = frameAnonymousObject.kt, 6) |
| field = $val1: int = 1 (sp = null) |
| field = arity: int = 0 (sp = Lambda.!EXT!) |
| Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' |
| |
| Process finished with exit code 0 |