84c473d800
Avoid calling InetAddress.getLocalHost() that can be very slow. Exact connection or disconnection string isn't relevant for tests anyway.
37 lines
1018 B
Plaintext
Vendored
37 lines
1018 B
Plaintext
Vendored
LineBreakpoint created at frameAnonymousObject.kt:11
|
|
Run Java
|
|
Connected to the target VM
|
|
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}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
|
|
|
|
Process finished with exit code 0
|