| 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 > b main | 3 > b main |
| 4 ### set breakpoint id: '0' method: 'main' bytecode index: '0' | 4 ### set breakpoint id: '0' method: 'main' bytecode index: '0' |
| 5 > r | 5 > r |
| 6 tests/debugger/internal_scope_test.dart:20:13 | 6 tests/debugger/internal_scope_test.dart:20:13 |
| 7 20 var rnd = new Random(); | 7 20 var rnd = new Random(); |
| 8 > n | 8 > n |
| 9 tests/debugger/internal_scope_test.dart:21:3 | 9 tests/debugger/internal_scope_test.dart:21:3 |
| 10 21 rnd.nextInt(255); | 10 21 rnd.nextInt(255); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 3: entry @callMain(new _Arguments()) | 26 3: entry @callMain(new _Arguments()) |
| 27 > p | 27 > p |
| 28 max: 255 | 28 max: 255 |
| 29 this: Instance of '_Random' | 29 this: Instance of '_Random' |
| 30 > toggle internal | 30 > toggle internal |
| 31 ### internal frame visibility set to: false | 31 ### internal frame visibility set to: false |
| 32 > bt | 32 > bt |
| 33 * 0: main @rnd.nextInt(255) | 33 * 0: main @rnd.nextInt(255) |
| 34 > p | 34 > p |
| 35 rnd: Instance of '_Random' | 35 rnd: Instance of '_Random' |
| 36 > p rnd |
| 37 Instance of '_Random' |
| 36 > q | 38 > q |
| OLD | NEW |