19 lines
938 B
Plaintext
19 lines
938 B
Plaintext
LineBreakpoint created at collections.kt:6
|
|
!JDK_HOME!\bin\java -agentlib:jdwp=transport=dt_socket,address=!HOST_NAME!:!HOST_PORT!,suspend=y,server=n -Dfile.encoding=!FILE_ENCODING! -classpath !APP_PATH!\classes;!KOTLIN_RUNTIME!;!CUSTOM_LIBRARY!;!RT_JAR! collections.CollectionsPackage
|
|
Connected to the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket'
|
|
collections.kt:5
|
|
Compile bytecode for arrayListOf(1, 2).map { it.toString() }
|
|
Compile bytecode for arrayListOf(1, 2, 101, 102).filter { it > 100 }
|
|
Compile bytecode for arrayListOf(1, 2).max()
|
|
Compile bytecode for arrayListOf(1, 2).count()
|
|
Compile bytecode for arrayListOf(1, 2).size
|
|
Compile bytecode for arrayListOf(1, 2).drop(1)
|
|
Compile bytecode for ar.map { if (it > 50) "big" else "small" }
|
|
.filter { it == "small" }
|
|
.size
|
|
|
|
// RESULT: 2: I
|
|
Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket'
|
|
|
|
Process finished with exit code 0
|