| 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 @'${foo()} and ${bar()}' | 8 main @'${foo()} and ${bar()}' |
| 9 > s | 9 > s |
| 10 main @foo() | 10 main @foo() |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 > s | 37 > s |
| 38 baz @s | 38 baz @s |
| 39 > s | 39 > s |
| 40 baz @s.length | 40 baz @s.length |
| 41 > s | 41 > s |
| 42 baz @=> s.length; | 42 baz @=> s.length; |
| 43 > s | 43 > s |
| 44 main @baz('${foo()} and ${bar()}') | 44 main @baz('${foo()} and ${bar()}') |
| 45 > s | 45 > s |
| 46 ### process terminated | 46 ### process terminated |
| 47 > s |
| 48 ### process not running, cannot step to next expression |
| 49 > q |
| OLD | NEW |