84c473d800
Avoid calling InetAddress.getLocalHost() that can be very slow. Exact connection or disconnection string isn't relevant for tests anyway.
30 lines
560 B
Plaintext
Vendored
30 lines
560 B
Plaintext
Vendored
LineBreakpoint created at evPropertyRefExpr.kt:8
|
|
Run Java
|
|
Connected to the target VM
|
|
evPropertyRefExpr.kt:8
|
|
package evPropertyRefExpr
|
|
|
|
class A {
|
|
var prop = 1
|
|
|
|
fun test() {
|
|
//Breakpoint!
|
|
if (prop == 1) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
A().test()
|
|
}
|
|
|
|
// PRINT_FRAME
|
|
Compile bytecode for prop
|
|
frame = test:8, A {evPropertyRefExpr}
|
|
this = this = {evPropertyRefExpr.A@uniqueID}
|
|
field = prop: int = 1 (sp = evPropertyRefExpr.kt, 4)
|
|
Disconnected from the target VM
|
|
|
|
Process finished with exit code 0
|