| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/ErrorParserTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/ErrorParserTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/ErrorParserTest.java
|
| index 23b64022f0c6d79c52ea88d5d67e384de63c1f17..38ad0f22e6437f03e6fe0b3a03691a19bbacf5ed 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/ErrorParserTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/parser/ErrorParserTest.java
|
| @@ -801,6 +801,10 @@ public class ErrorParserTest extends ParserTestCase {
|
| parseCompilationUnit("void f => x;", ParserErrorCode.MISSING_FUNCTION_PARAMETERS);
|
| }
|
|
|
| + public void test_missingIdentifier_afterOperator() throws Exception {
|
| + parse("parseMultiplicativeExpression", "1 *", ParserErrorCode.MISSING_IDENTIFIER);
|
| + }
|
| +
|
| public void test_missingIdentifier_functionDeclaration_returnTypeWithoutName() throws Exception {
|
| parse("parseFunctionDeclarationStatement", "A<T> () {}", ParserErrorCode.MISSING_IDENTIFIER);
|
| }
|
|
|