84c473d800
Avoid calling InetAddress.getLocalHost() that can be very slow. Exact connection or disconnection string isn't relevant for tests anyway.
32 lines
927 B
Plaintext
Vendored
32 lines
927 B
Plaintext
Vendored
LineBreakpoint created at createExpressionCastToBuiltIn.kt:7
|
|
Run Java
|
|
Connected to the target VM
|
|
createExpressionCastToBuiltIn.kt:7
|
|
package createExpressionCastToBuiltIn
|
|
|
|
fun main(args: Array<String>) {
|
|
val primitiveArray = intArrayOf(1)
|
|
val stringArray = arrayOf("a")
|
|
//Breakpoint!
|
|
val a = 1
|
|
}
|
|
|
|
// PRINT_FRAME
|
|
// SKIP: value, hash, hash32, offset, count
|
|
// DESCRIPTOR_VIEW_OPTIONS: NAME_EXPRESSION_RESULT
|
|
|
|
Compile bytecode for args
|
|
Compile bytecode for primitiveArray
|
|
Compile bytecode for primitiveArray[0]
|
|
Compile bytecode for stringArray
|
|
Compile bytecode for stringArray[0]
|
|
frame = main
|
|
local = args (expression = args)
|
|
local = primitiveArray (expression = primitiveArray)
|
|
element = 0 (expression = primitiveArray[0])
|
|
local = stringArray (expression = stringArray)
|
|
element = 0 (expression = stringArray[0])
|
|
Disconnected from the target VM
|
|
|
|
Process finished with exit code 0
|