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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java

Issue 268673006: Fix for 10469- removal of the ArgumentDefinitionTest Ast node from the analyzer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase before commit Created 6 years, 8 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java
index 5c6852511a28d02fafcbbf8f0dff53912fd41ba7..85803a01abee3362ecea12bb8ddda368bce0c081 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/ast/AstComparator.java
@@ -57,13 +57,6 @@ public class AstComparator implements AstVisitor<Boolean> {
}
@Override
- public Boolean visitArgumentDefinitionTest(ArgumentDefinitionTest node) {
- ArgumentDefinitionTest other = (ArgumentDefinitionTest) this.other;
- return isEqualTokens(node.getQuestion(), other.getQuestion())
- && isEqualNodes(node.getIdentifier(), other.getIdentifier());
- }
-
- @Override
public Boolean visitArgumentList(ArgumentList node) {
ArgumentList other = (ArgumentList) this.other;
return isEqualTokens(node.getLeftParenthesis(), other.getLeftParenthesis())

Powered by Google App Engine
This is Rietveld 408576698