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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/RecursiveAstVisitor.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/ast/visitor/RecursiveAstVisitor.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/RecursiveAstVisitor.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/RecursiveAstVisitor.java
index be2b7e08f3b85b020e8920699d5819b0aa01728c..f60c4d4523b96afdad7f5796ea49ee298807ac50 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/RecursiveAstVisitor.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/RecursiveAstVisitor.java
@@ -40,12 +40,6 @@ public class RecursiveAstVisitor<R> implements AstVisitor<R> {
}
@Override
- public R visitArgumentDefinitionTest(ArgumentDefinitionTest node) {
- node.visitChildren(this);
- return null;
- }
-
- @Override
public R visitArgumentList(ArgumentList node) {
node.visitChildren(this);
return null;

Powered by Google App Engine
This is Rietveld 408576698