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); |