| Index: pkg/compiler/lib/src/resolution/resolution.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/resolution.dart b/pkg/compiler/lib/src/resolution/resolution.dart
|
| index 2a09e8b27865b9aeccc8aefafea63dc1ec433ec6..e59832beda25b8b5bc1cd3e1753e77c66859f70e 100644
|
| --- a/pkg/compiler/lib/src/resolution/resolution.dart
|
| +++ b/pkg/compiler/lib/src/resolution/resolution.dart
|
| @@ -134,6 +134,9 @@ class ResolverTask extends CompilerTask {
|
| while (redirection != null) {
|
| // Ensure that we follow redirections through implementation elements.
|
| redirection = redirection.implementation;
|
| + if (redirection.isError) {
|
| + break;
|
| + }
|
| if (seen.contains(redirection)) {
|
| reporter.reportErrorMessage(
|
| node, MessageKind.REDIRECTING_CONSTRUCTOR_CYCLE);
|
|
|