84c473d800
Avoid calling InetAddress.getLocalHost() that can be very slow. Exact connection or disconnection string isn't relevant for tests anyway.
31 lines
1.0 KiB
Plaintext
Vendored
31 lines
1.0 KiB
Plaintext
Vendored
LineBreakpoint created at evDelegatedProperty.kt:13
|
|
Run Java
|
|
Connected to the target VM
|
|
evDelegatedProperty.kt:13
|
|
package evDelegatedProperty
|
|
|
|
import kotlin.properties.Delegates
|
|
|
|
class A {
|
|
var prop: Int by Delegates.notNull()
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A()
|
|
a.prop = 1
|
|
//Breakpoint!
|
|
val b = a.prop
|
|
}
|
|
|
|
// PRINT_FRAME
|
|
frame = main:13, EvDelegatedPropertyKt {evDelegatedProperty}
|
|
local = args: java.lang.String[] = {java.lang.String[0]@uniqueID} (sp = evDelegatedProperty.kt, 9)
|
|
local = a: evDelegatedProperty.A = {evDelegatedProperty.A@uniqueID} (sp = evDelegatedProperty.kt, 10)
|
|
field = prop$delegate: kotlin.properties.ReadWriteProperty = {kotlin.properties.NotNullVar@uniqueID} (sp = evDelegatedProperty.kt, 6)
|
|
field = value: java.lang.Object = {java.lang.Integer@uniqueID}1 (sp = Delegates.!EXT!)
|
|
field = value: int = 1 (sp = Integer.!EXT!)
|
|
field = prop: int = 1 (sp = evDelegatedProperty.kt, 6)
|
|
Disconnected from the target VM
|
|
|
|
Process finished with exit code 0
|