| Index: pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| index 9c4ef7ba23db0d8657f01e20494c09979000f492..fe240388518e0cc566f4fca89cc2f02a4f466ccc 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
|
| @@ -3917,6 +3917,27 @@ class C {
|
| ''');
|
| }
|
|
|
| + test_invalidUris() {
|
| + allowMissingFiles = true;
|
| + checkLibrary(r'''
|
| +import '[invalid uri]';
|
| +import '[invalid uri]:foo.dart';
|
| +import 'a1.dart';
|
| +import '[invalid uri]';
|
| +import '[invalid uri]:foo.dart';
|
| +
|
| +export '[invalid uri]';
|
| +export '[invalid uri]:foo.dart';
|
| +export 'a2.dart';
|
| +export '[invalid uri]';
|
| +export '[invalid uri]:foo.dart';
|
| +
|
| +part '[invalid uri]';
|
| +part 'a3.dart';
|
| +part '[invalid uri]';
|
| +''');
|
| + }
|
| +
|
| test_library() {
|
| checkLibrary('');
|
| }
|
|
|