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