Move debugger test data to the new location

This commit is contained in:
Yan Zhulanow
2019-09-27 00:13:53 +09:00
parent b4cc5703de
commit d8d81c51d7
1423 changed files with 0 additions and 0 deletions
@@ -0,0 +1,19 @@
package jcBlock
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.block()
}
// STEP_INTO: 1
// STEP_OVER: 2
// EXPRESSION: bodyVal
// RESULT: 1: I
// EXPRESSION: thenVal
// RESULT: 1: I
// EXPRESSION: elseVal
// RESULT: Unresolved reference: elseVal
@@ -0,0 +1,12 @@
LineBreakpoint created at jcBlock.kt:6
Run Java
Connected to the target VM
jcBlock.kt:6
JavaClass.java:16
JavaClass.java:18
JavaClass.java:19
Compile bytecode for bodyVal
Compile bytecode for thenVal
Disconnected from the target VM
Process finished with exit code 0
@@ -0,0 +1,13 @@
package jcImports
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.imports()
}
// STEP_INTO: 1
// STEP_OVER: 1
// EXPRESSION: list.filter { it == 1 }.size
// RESULT: 1: I
@@ -0,0 +1,10 @@
LineBreakpoint created at jcImports.kt:6
Run Java
Connected to the target VM
jcImports.kt:6
JavaClass.java:27
JavaClass.java:28
Compile bytecode for list.filter { it == 1 }.size
Disconnected from the target VM
Process finished with exit code 0
@@ -0,0 +1,13 @@
package jcLocalVariable
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.localVariable()
}
// STEP_INTO: 1
// STEP_OVER: 1
// EXPRESSION: i
// RESULT: 1: I
@@ -0,0 +1,10 @@
LineBreakpoint created at jcLocalVariable.kt:6
Run Java
Connected to the target VM
jcLocalVariable.kt:6
JavaClass.java:11
JavaClass.java:12
Compile bytecode for i
Disconnected from the target VM
Process finished with exit code 0
@@ -0,0 +1,18 @@
package jcMarkedObject
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.markObject()
}
// STEP_INTO: 1
// STEP_OVER: 1
// EXPRESSION: i
// RESULT: instance of java.lang.Integer(id=ID): Ljava/lang/Integer;
// EXPRESSION: i_DebugLabel
// RESULT: instance of java.lang.Integer(id=ID): Ljava/lang/Integer;
// DEBUG_LABEL: i = i
@@ -0,0 +1,11 @@
LineBreakpoint created at jcMarkedObject.kt:6
Run Java
Connected to the target VM
jcMarkedObject.kt:6
JavaClass.java:39
JavaClass.java:40
Compile bytecode for i
Compile bytecode for i_DebugLabel
Disconnected from the target VM
Process finished with exit code 0
@@ -0,0 +1,18 @@
package jcProperty
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.property()
}
// STEP_INTO: 1
// EXPRESSION: this.javaProperty
// RESULT: 1: I
// EXPRESSION: javaProperty
// RESULT: 1: I
// EXPRESSION: javaPrivateProperty
// RESULT: 1: I
@@ -0,0 +1,11 @@
LineBreakpoint created at jcProperty.kt:6
Run Java
Connected to the target VM
jcProperty.kt:6
JavaClass.java:47
Compile bytecode for this.javaProperty
Compile bytecode for javaProperty
Compile bytecode for javaPrivateProperty
Disconnected from the target VM
Process finished with exit code 0
@@ -0,0 +1,12 @@
package jcSimple
fun main(args: Array<String>) {
val javaClass = forTests.javaContext.JavaClass()
//Breakpoint!
javaClass.simple()
}
// STEP_INTO: 1
// EXPRESSION: 1 + 1
// RESULT: 2: I
@@ -0,0 +1,9 @@
LineBreakpoint created at jcSimple.kt:6
Run Java
Connected to the target VM
jcSimple.kt:6
JavaClass.java:7
Compile bytecode for 1 + 1
Disconnected from the target VM
Process finished with exit code 0