| 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 @new B(42) | 10 main @new B(42) |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 > s | 109 > s |
| 110 B.initB @a + b + c + d | 110 B.initB @a + b + c + d |
| 111 > s | 111 > s |
| 112 B.initB @sum = a + b + c + d | 112 B.initB @sum = a + b + c + d |
| 113 > s | 113 > s |
| 114 B @initB(_a, _x, _y, _z) | 114 B @initB(_a, _x, _y, _z) |
| 115 > s | 115 > s |
| 116 main @new B(42) | 116 main @new B(42) |
| 117 > s | 117 > s |
| 118 ### process terminated | 118 ### process terminated |
| 119 > s |
| 120 ### process not running, cannot step to next expression |
| 121 > q |
| OLD | NEW |