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

Unified Diff: pkg/kernel/test/class_hierarchy_self_check.dart

Issue 2904203002: Extract ClassHierarchyImpl implementation from ClassHierarchy. (Closed)
Patch Set: Rename ClassHierarchyImpl to ClosedWorldClassHierarchy. Created 3 years, 7 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
« no previous file with comments | « pkg/kernel/test/class_hierarchy_membench.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/test/class_hierarchy_self_check.dart
diff --git a/pkg/kernel/test/class_hierarchy_self_check.dart b/pkg/kernel/test/class_hierarchy_self_check.dart
index d4cc87b28580a0fa754521eeb110ef1c75d9b4e0..f9edbc8bc55990e1b4bf7ef0d0a3d413ab07024c 100644
--- a/pkg/kernel/test/class_hierarchy_self_check.dart
+++ b/pkg/kernel/test/class_hierarchy_self_check.dart
@@ -18,7 +18,8 @@ main(List<String> args) {
void testClassHierarchyOnProgram(Program program, {bool verbose: false}) {
BasicClassHierarchy basic = new BasicClassHierarchy(program);
- ClassHierarchy classHierarchy = new ClassHierarchy(program);
+ ClosedWorldClassHierarchy classHierarchy =
+ new ClosedWorldClassHierarchy(program);
int total = classHierarchy.classes.length;
int progress = 0;
for (var class1 in classHierarchy.classes) {
« no previous file with comments | « pkg/kernel/test/class_hierarchy_membench.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698