| Index: lib/compiler/implementation/resolver.dart
|
| diff --git a/lib/compiler/implementation/resolver.dart b/lib/compiler/implementation/resolver.dart
|
| index d08b6f60ca5ce0cc308a54015c56b5e351805294..bdc316defbf7ea404016f38027464340adf414df 100644
|
| --- a/lib/compiler/implementation/resolver.dart
|
| +++ b/lib/compiler/implementation/resolver.dart
|
| @@ -1762,6 +1762,9 @@ class ResolverVisitor extends CommonResolverVisitor<Element> {
|
| }
|
|
|
| visitReturn(Return node) {
|
| + if (node.isRedirectingConstructorBody) {
|
| + unimplemented(node, 'redirecting constructors');
|
| + }
|
| visit(node.expression);
|
| }
|
|
|
|
|