Chromium Code Reviews| 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 0dadd136490b56440756f8849dacb38318735188..9974eefb42f60cd4a7e2d7933be945ed649907c7 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 |
| @@ -1095,6 +1095,15 @@ public class ErrorParserTest extends ParserTestCase { |
| ParserErrorCode.POSITIONAL_PARAMETER_OUTSIDE_GROUP); |
| } |
| + // TODO(scheglov) |
|
Brian Wilkerson
2013/07/09 00:22:50
What's left to do?
|
| + public void test_redirectionInNonFactoryConstructor() throws Exception { |
| + parse( |
| + "parseClassMember", |
| + new Object[] {"C"}, |
| + "C() = D;", |
| + ParserErrorCode.REDIRECTION_IN_NON_FACTORY_CONSTRUCTOR); |
| + } |
| + |
| public void test_staticAfterConst() throws Exception { |
| parse( |
| "parseClassMember", |