| 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 43c98bab75017f252f6242c5d0760c57ced63547..73b7b83753a5f2b7c7ad323abbc8271da6289d57 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
|
| @@ -119,6 +119,10 @@ public class SimpleParserTest extends ParserTestCase {
|
| assertEquals("two\\nlines", computeStringValue("r'two\\nlines'"));
|
| }
|
|
|
| + public void test_constFactory() throws Exception {
|
| + parse("parseClassMember", new Object[] {"C"}, "const factory C() = A;");
|
| + }
|
| +
|
| public void test_createSyntheticIdentifier() throws Exception {
|
| SimpleIdentifier identifier = createSyntheticIdentifier();
|
| assertTrue(identifier.isSynthetic());
|
|
|