| 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 @new A() | 8 main @new A() |
| 9 > s | 9 > s |
| 10 A initializer @42 | 10 A initializer @42 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 > s | 77 > s |
| 78 isB lazy initializer @globalA is B | 78 isB lazy initializer @globalA is B |
| 79 > s | 79 > s |
| 80 main @new C(a, b) | 80 main @new C(a, b) |
| 81 > s | 81 > s |
| 82 main @globalA | 82 main @globalA |
| 83 > s | 83 > s |
| 84 main @globalA.a | 84 main @globalA.a |
| 85 > s | 85 > s |
| 86 ### process terminated | 86 ### process terminated |
| 87 > s |
| 88 ### process not running, cannot step to next expression |
| 89 > q |
| OLD | NEW |