Index: pkg/compiler/lib/src/resolution/class_hierarchy.dart |
diff --git a/pkg/compiler/lib/src/resolution/class_hierarchy.dart b/pkg/compiler/lib/src/resolution/class_hierarchy.dart |
index 62265c4dfc121212d7e3f3e12a19890d991cf97a..e01cf6e389e524b0a182b49e5a25949837b1c9e9 100644 |
--- a/pkg/compiler/lib/src/resolution/class_hierarchy.dart |
+++ b/pkg/compiler/lib/src/resolution/class_hierarchy.dart |
@@ -538,7 +538,7 @@ class ClassResolverVisitor extends TypeDefinitionVisitor { |
*/ |
void calculateAllSupertypes(BaseClassElementX cls) { |
if (cls.allSupertypesAndSelf != null) return; |
- final ResolutionDartType supertype = cls.supertype; |
+ final ResolutionInterfaceType supertype = cls.supertype; |
if (supertype != null) { |
cls.allSupertypesAndSelf = new OrderedTypeSetBuilder(cls, |
reporter: reporter, objectType: commonElements.objectType) |