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

Unified Diff: pkg/compiler/lib/src/js_backend/codegen/task.dart

Issue 1068243002: Overhaul tree IR visitor and rename IR classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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/js_backend/codegen/task.dart
diff --git a/pkg/compiler/lib/src/js_backend/codegen/task.dart b/pkg/compiler/lib/src/js_backend/codegen/task.dart
index d631f286655f710e1b4320367c062ff39a75fd0f..ac778d513b5a1a6bf8ddb50fc9a646c85d4c3a53 100644
--- a/pkg/compiler/lib/src/js_backend/codegen/task.dart
+++ b/pkg/compiler/lib/src/js_backend/codegen/task.dart
@@ -156,7 +156,7 @@ class CpsFunctionCompiler implements FunctionCompiler {
}
}
- static bool checkCpsIntegrity(cps.ExecutableDefinition node) {
+ static bool checkCpsIntegrity(cps.RootNode node) {
new CheckCpsIntegrity().check(node);
return true; // So this can be used from assert().
}
@@ -192,7 +192,7 @@ class CpsFunctionCompiler implements FunctionCompiler {
return treeNode;
}
- static bool checkTreeIntegrity(tree_ir.ExecutableDefinition node) {
+ static bool checkTreeIntegrity(tree_ir.RootNode node) {
new CheckTreeIntegrity().check(node);
return true; // So this can be used from assert().
}

Powered by Google App Engine
This is Rietveld 408576698