| Index: dart/tests/try/web/incremental_compilation_update_test.dart
|
| diff --git a/dart/tests/try/web/incremental_compilation_update_test.dart b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| index ad5b39f079bb0a0018e18646dffea24bcb8f532a..9ce598642fd43e78f8c1d27c4a3157519f63169b 100644
|
| --- a/dart/tests/try/web/incremental_compilation_update_test.dart
|
| +++ b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| @@ -461,6 +461,27 @@ main() {
|
| """,
|
| const <String>['Called B.m']),
|
| ],
|
| +
|
| + // Test that source maps don't throw exceptions.
|
| + const <ProgramResult>[
|
| + const ProgramResult(
|
| + """
|
| +main() {
|
| + print('a');
|
| +}
|
| +""",
|
| + const <String>['a']),
|
| +
|
| + const ProgramResult(
|
| + """
|
| +main() {
|
| + print('a');
|
| + print('b');
|
| + print('c');
|
| +}
|
| +""",
|
| + const <String>['a', 'b', 'c']),
|
| + ],
|
| ];
|
|
|
| void main() {
|
|
|