| 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 > bf tests/debugger/break_in_anonymous_function_test.dart 12 | 3 > bf tests/debugger/break_in_anonymous_function_test.dart 12 |
| 4 ### set breakpoint id: '0' method: 'call' bytecode index: '15' | 4 ### set breakpoint id: '0' method: 'call' bytecode index: '15' |
| 5 > bf tests/debugger/break_in_anonymous_function_test.dart 17 | 5 > bf tests/debugger/break_in_anonymous_function_test.dart 17 |
| 6 ### set breakpoint id: '1' method: 'call' bytecode index: '0' | 6 ### set breakpoint id: '1' method: 'call' bytecode index: '0' |
| 7 > bf tests/debugger/break_in_anonymous_function_test.dart 19 | 7 > bf tests/debugger/break_in_anonymous_function_test.dart 19 |
| 8 ### set breakpoint id: '2' method: 'call' bytecode index: '0' | 8 ### set breakpoint id: '2' method: 'call' bytecode index: '0' |
| 9 > r | 9 > r |
| 10 tests/debugger/break_in_anonymous_function_test.dart:12:3 | 10 tests/debugger/break_in_anonymous_function_test.dart:12:3 |
| 11 12 return 1 + 2 + 3; | 11 12 return 1 + 2 + 3; |
| 12 > c | 12 > c |
| 13 tests/debugger/break_in_anonymous_function_test.dart:17:19 | 13 tests/debugger/break_in_anonymous_function_test.dart:17:19 |
| 14 17 Expect.equals(3, i); | 14 17 Expect.equals(3, i); |
| 15 > c | 15 > c |
| 16 tests/debugger/break_in_anonymous_function_test.dart:19:21 | 16 tests/debugger/break_in_anonymous_function_test.dart:19:21 |
| 17 19 Expect.equals(5, j); | 17 19 Expect.equals(5, j); |
| 18 > c | 18 > c |
| 19 ### process terminated | 19 ### process terminated |
| 20 > q |
| OLD | NEW |