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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/SimpleParserTest.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/parser/SimpleParserTest.java
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/SimpleParserTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/SimpleParserTest.java
index 299b8f46a21943053ae4b20994a6bcd8df7d298b..775bfed832236a6a79d63c92fe80ec7c519d4cc6 100644
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/SimpleParserTest.java
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/SimpleParserTest.java
@@ -437,15 +437,6 @@ public class SimpleParserTest extends ParserTestCase {
assertEquals(lexeme, identifier.getName());
}
- public void test_parseArgumentDefinitionTest() throws Exception {
- ArgumentDefinitionTest test = parse(
- "parseArgumentDefinitionTest",
- "?x",
- ParserErrorCode.DEPRECATED_ARGUMENT_DEFINITION_TEST);
- assertNotNull(test.getQuestion());
- assertNotNull(test.getIdentifier());
- }
-
public void test_parseArgumentList_empty() throws Exception {
ArgumentList argumentList = parse("parseArgumentList", "()");
NodeList<Expression> arguments = argumentList.getArguments();

Powered by Google App Engine
This is Rietveld 408576698