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

Unified Diff: pkg/analyzer/lib/src/generated/incremental_resolution_validator.dart

Issue 1406253004: Lexical support for configurable imports (DEP 40) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/generated/incremental_resolution_validator.dart
diff --git a/pkg/analyzer/lib/src/generated/incremental_resolution_validator.dart b/pkg/analyzer/lib/src/generated/incremental_resolution_validator.dart
index bab107ed465b44ab30351afc7a53249b36028f50..cb16363d0df1c18465764e16b5a810d1ed91ec3e 100644
--- a/pkg/analyzer/lib/src/generated/incremental_resolution_validator.dart
+++ b/pkg/analyzer/lib/src/generated/incremental_resolution_validator.dart
@@ -185,6 +185,14 @@ class _SameResolutionValidator implements AstVisitor {
}
@override
+ visitConfiguration(Configuration node) {
+ Configuration other = this.other;
+ _visitNode(node.name, other.name);
+ _visitNode(node.value, other.value);
+ _visitNode(node.libraryUri, other.libraryUri);
+ }
+
+ @override
visitConstructorDeclaration(ConstructorDeclaration node) {
ConstructorDeclaration other = this.other;
_visitDeclaration(node, other);
@@ -238,6 +246,12 @@ class _SameResolutionValidator implements AstVisitor {
}
@override
+ visitDottedName(DottedName node) {
+ DottedName other = this.other;
+ _visitList(node.components, other.components);
+ }
+
+ @override
visitDoubleLiteral(DoubleLiteral node) {
DoubleLiteral other = this.other;
_visitExpression(node, other);

Powered by Google App Engine
This is Rietveld 408576698