Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: pkg/analyzer/lib/src/dart/element/handle.dart

Issue 2226613004: Suppress follow-on errors when a file is imported with either a prefix or a show clause (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Cache URI existence in a modifier' Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/lib/src/dart/element/handle.dart
diff --git a/pkg/analyzer/lib/src/dart/element/handle.dart b/pkg/analyzer/lib/src/dart/element/handle.dart
index 6823b9983b79d939b748325075f59f040309e731..dae8fa272c64febe66361bda72a94e0bde0e9286 100644
--- a/pkg/analyzer/lib/src/dart/element/handle.dart
+++ b/pkg/analyzer/lib/src/dart/element/handle.dart
@@ -562,6 +562,9 @@ class ExportElementHandle extends ElementHandle implements ExportElement {
int get uriEnd => actualElement.uriEnd;
@override
+ bool get uriExists => actualElement.uriExists;
+
+ @override
int get uriOffset => actualElement.uriOffset;
}
@@ -707,6 +710,9 @@ class ImportElementHandle extends ElementHandle implements ImportElement {
int get uriEnd => actualElement.uriEnd;
@override
+ bool get uriExists => actualElement.uriExists;
+
+ @override
int get uriOffset => actualElement.uriOffset;
}

Powered by Google App Engine
This is Rietveld 408576698