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

Unified Diff: pkg/kernel/test/class_hierarchy_membench.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_bench.dart ('k') | pkg/kernel/test/class_hierarchy_self_check.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/test/class_hierarchy_membench.dart
diff --git a/pkg/kernel/test/class_hierarchy_membench.dart b/pkg/kernel/test/class_hierarchy_membench.dart
index d8b05ec8f334c4d3b8d5e7d73a4e6aa3abeb13c7..4909616c2c50870ef72b4919caac0be3efb90225 100644
--- a/pkg/kernel/test/class_hierarchy_membench.dart
+++ b/pkg/kernel/test/class_hierarchy_membench.dart
@@ -43,10 +43,10 @@ main(List<String> args) {
ClassHierarchy buildHierarchy() {
return options['basic']
? new BasicClassHierarchy(program)
- : new ClassHierarchy(program);
+ : new ClosedWorldClassHierarchy(program);
}
- List<ClassHierarchy> keepAlive = <ClassHierarchy>[];
+ List<ClosedWorldClassHierarchy> keepAlive = <ClosedWorldClassHierarchy>[];
for (int i = 0; i < copyCount; ++i) {
keepAlive.add(buildHierarchy());
}
« no previous file with comments | « pkg/kernel/test/class_hierarchy_bench.dart ('k') | pkg/kernel/test/class_hierarchy_self_check.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698