| 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 a.dart 5 | 3 > bf a.dart 5 |
| 4 ### set breakpoint id: '0' method: 'a' bytecode index: '2' | 4 ### set breakpoint id: '0' method: 'a' bytecode index: '2' |
| 5 > r | 5 > r |
| 6 tests/debugger/find_file_test/a/a.dart:5:9 | 6 tests/debugger/find_file_test/a/a.dart:5:9 |
| 7 5 int a() => 10; | 7 5 int a() => 10; |
| 8 > bf b.dart 5 | 8 > bf b.dart 5 |
| 9 Multiple matches for file pattern b.dart. Please select from the following choic
es: | 9 Multiple matches for file pattern b.dart. Please select from the following choic
es: |
| 10 1: tests/debugger/find_file_test/a/b.dart | 10 1: tests/debugger/find_file_test/a/b.dart |
| 11 2: tests/debugger/find_file_test/b/b.dart | 11 2: tests/debugger/find_file_test/b/b.dart |
| 12 a: all of the above | 12 a: all of the above |
| 13 n: none of the above | 13 n: none of the above |
| 14 > 2 | 14 > 2 |
| 15 ### set breakpoint id: '1' method: 'b' bytecode index: '2' | 15 ### set breakpoint id: '1' method: 'b' bytecode index: '2' |
| 16 > c | 16 > c |
| 17 tests/debugger/find_file_test/b/b.dart:5:9 | 17 tests/debugger/find_file_test/b/b.dart:5:9 |
| 18 5 int b() => 30; | 18 5 int b() => 30; |
| 19 > c | 19 > c |
| 20 ### process terminated | 20 ### process terminated |
| 21 > q |
| OLD | NEW |