Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: pkg/compiler/lib/src/world.dart

Issue 2603263002: Prefix resolution_types with Resolution. (Closed)
Patch Set: Rebased Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/world.dart
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
index 1afe13b6f8430b7a530ce589531c03169d541eaa..097940ea6d635d631f5221f794e9b1ce8d15597a 100644
--- a/pkg/compiler/lib/src/world.dart
+++ b/pkg/compiler/lib/src/world.dart
@@ -729,7 +729,7 @@ class ClosedWorldImpl implements ClosedWorld, ClosedWorldRefiner {
List<ClassElement> commonSupertypes = <ClassElement>[];
OUTER:
- for (Link<DartType> link = typeSet[depth];
+ for (Link<ResolutionDartType> link = typeSet[depth];
link.head.element != commonElements.objectClass;
link = link.tail) {
ClassElement cls = link.head.element;
@@ -942,7 +942,7 @@ class ClosedWorldImpl implements ClosedWorld, ClosedWorldRefiner {
ClassHierarchyNode parentNode = getClassHierarchyNode(cls.superclass);
ClassHierarchyNode node =
_classHierarchyNodes[cls] = new ClassHierarchyNode(parentNode, cls);
- for (InterfaceType type in cls.allSupertypes) {
+ for (ResolutionInterfaceType type in cls.allSupertypes) {
ClassSet subtypeSet = getClassSet(type.element);
subtypeSet.addSubtype(node);
}
« no previous file with comments | « pkg/compiler/lib/src/universe/world_builder.dart ('k') | tests/compiler/dart2js/analyze_dart2js_helpers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698