Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/SimpleIdentifierTest.java |
diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/SimpleIdentifierTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/SimpleIdentifierTest.java |
index 7f401485cd01e5dd83fab651c3b78e5826a4a8f7..af88107d6cb05ba63cf9080a774bfa25da96eb3b 100644 |
--- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/SimpleIdentifierTest.java |
+++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/ast/SimpleIdentifierTest.java |
@@ -16,7 +16,6 @@ package com.google.dart.engine.ast; |
import com.google.dart.engine.parser.ParserTestCase; |
import com.google.dart.engine.scanner.TokenType; |
-import static com.google.dart.engine.ast.AstFactory.argumentDefinitionTest; |
import static com.google.dart.engine.ast.AstFactory.assignmentExpression; |
import static com.google.dart.engine.ast.AstFactory.binaryExpression; |
import static com.google.dart.engine.ast.AstFactory.catchClause; |
@@ -65,11 +64,6 @@ public class SimpleIdentifierTest extends ParserTestCase { |
NONE; |
} |
- public void test_inDeclarationContext_argumentDefinition() { |
- SimpleIdentifier identifier = argumentDefinitionTest("p").getIdentifier(); |
- assertFalse(identifier.inDeclarationContext()); |
- } |
- |
public void test_inDeclarationContext_catch_exception() { |
SimpleIdentifier identifier = catchClause("e").getExceptionParameter(); |
assertTrue(identifier.inDeclarationContext()); |