| OLD | NEW |
| 1 Starting session. Type 'help' for a list of commands. | 1 Starting session. Type 'help' for a list of commands. |
| 2 | 2 |
| 3 > t verbose | 3 > t verbose |
| 4 ### verbose printing set to: false | 4 ### verbose printing set to: false |
| 5 > b main | 5 > b main |
| 6 ### set breakpoint id: '0' method: 'main' bytecode index: '0' | 6 ### set breakpoint id: '0' method: 'main' bytecode index: '0' |
| 7 > r | 7 > r |
| 8 main @42 | 8 main @42 |
| 9 > s | 9 > s |
| 10 main @a1 | 10 main @a1 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 > s | 35 > s |
| 36 A initializer @this.x = x | 36 A initializer @this.x = x |
| 37 > s | 37 > s |
| 38 a2 lazy initializer @new A(1) | 38 a2 lazy initializer @new A(1) |
| 39 > s | 39 > s |
| 40 main @a2.x | 40 main @a2.x |
| 41 > s | 41 > s |
| 42 main @a1.x + x + a2.x | 42 main @a1.x + x + a2.x |
| 43 > s | 43 > s |
| 44 ### process terminated | 44 ### process terminated |
| 45 > s |
| 46 ### process not running, cannot step to next expression |
| 47 > s |
| 48 ### process not running, cannot step to next expression |
| 49 > q |
| OLD | NEW |