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