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

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

Issue 2930973002: Remove ClassHierarchy factory constructor. (Closed)
Patch Set: Created 3 years, 6 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/lib/class_hierarchy.dart ('k') | pkg/kernel/test/treeshaker_bench.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/test/class_hierarchy_bench.dart
diff --git a/pkg/kernel/test/class_hierarchy_bench.dart b/pkg/kernel/test/class_hierarchy_bench.dart
index 02d6b0cc93150004aaa917a1441ea1f0f5dfc434..03060abf50e61f76dc41cc8e9a2150fbbd705a8f 100644
--- a/pkg/kernel/test/class_hierarchy_bench.dart
+++ b/pkg/kernel/test/class_hierarchy_bench.dart
@@ -41,7 +41,7 @@ main(List<String> args) {
ClassHierarchy buildHierarchy() {
return options['basic']
? new BasicClassHierarchy(program)
- : new ClassHierarchy(program);
+ : new ClosedWorldClassHierarchy(program);
}
var watch = new Stopwatch()..start();
« no previous file with comments | « pkg/kernel/lib/class_hierarchy.dart ('k') | pkg/kernel/test/treeshaker_bench.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698