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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/AstFactory.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_test/src/com/google/dart/engine/ast/AstFactory.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/AstFactory.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/AstFactory.java
index c998fe4b277eb5734a8ea169c8720be448486cc5..7aeb9e36489c72209f2bdd3205a232a47aadb50e 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/AstFactory.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/AstFactory.java
@@ -61,10 +61,6 @@ public final class AstFactory {
arguments);
}
- public static ArgumentDefinitionTest argumentDefinitionTest(String identifier) {
- return new ArgumentDefinitionTest(tokenFromType(TokenType.QUESTION), identifier(identifier));
- }
-
public static ArgumentList argumentList(Expression... arguments) {
return new ArgumentList(
tokenFromType(TokenType.OPEN_PAREN),

Powered by Google App Engine
This is Rietveld 408576698