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