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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/ToSourceVisitor.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/ToSourceVisitor.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/ToSourceVisitor.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/ToSourceVisitor.java
index 41a2fe822e83572dd2479ae3a1c1e083353224da..f5edb5734d23805e8e5c7e1c24bdff7a442e0ba2 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/ToSourceVisitor.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/visitor/ToSourceVisitor.java
@@ -57,13 +57,6 @@ public class ToSourceVisitor implements AstVisitor<Void> {
}
@Override
- public Void visitArgumentDefinitionTest(ArgumentDefinitionTest node) {
- writer.print('?');
- visitNode(node.getIdentifier());
- return null;
- }
-
- @Override
public Void visitArgumentList(ArgumentList node) {
writer.print('(');
visitNodeListWithSeparator(node.getArguments(), ", ");

Powered by Google App Engine
This is Rietveld 408576698