| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index 40dc6df28187d42bbb9ebde3958af73387c8f1aa..4b7329b56c28c1d0bef44d5e1cbbcf1b295ccd83 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -1905,7 +1905,8 @@ class _CompilerElementEnvironment implements ElementEnvironment {
|
| @override
|
| void forEachSupertype(
|
| ClassElement cls, void f(ResolutionInterfaceType supertype)) {
|
| - cls.allSupertypes.forEach((ResolutionDartType supertype) => f(supertype));
|
| + cls.allSupertypes
|
| + .forEach((ResolutionInterfaceType supertype) => f(supertype));
|
| }
|
|
|
| @override
|
|
|