We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdbe88 commit 4c8bb9bCopy full SHA for 4c8bb9b
test/end2end/model_test.dart
@@ -915,12 +915,12 @@ void main() async {
915
for (final l in <LibraryElement2>{
916
...importLists
917
.expand((imports) => imports)
918
- .map((import) => import.uri)
+ .map((import) => import.importedLibrary2?.uri)
919
.whereType<DirectiveUriWithLibrary>()
920
.map((uri) => uri.library2),
921
...exportLists
922
.expand((exports) => exports)
923
- .map((export) => export.uri)
+ .map((export) => export.exportedLibrary2?.uri)
924
925
.map((uri) => uri.library2)
926
})
0 commit comments