Files
kotlin-fork/idea/testData/debugger/tinyApp/outs/evPropertyRefExpr.out
T
Nikolay Krasko 84c473d800 Speed up debugger tests by replacing base output preprocessor
Avoid calling InetAddress.getLocalHost() that can be very slow.
Exact connection or disconnection string isn't relevant for tests
anyway.
2017-03-23 00:31:43 +03:00

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