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

Unified Diff: pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart

Issue 1204733002: dart2js cps: Make Identical a built-in and add Interceptor to Tree IR. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
index 7106756bf6cb81cbb929cf1611ba88797a8d1438..528edc268f3e2ddd8ac62e11d07695463ac71541 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
@@ -299,12 +299,6 @@ class SExpressionStringifier extends Indentation implements Visitor<String> {
return '(CreateInstance $className ($arguments)$typeInformation)';
}
- String visitIdentical(Identical node) {
- String left = access(node.left);
- String right = access(node.right);
- return '(Identical $left $right)';
- }
-
String visitInterceptor(Interceptor node) {
return '(Interceptor ${access(node.input)})';
}

Powered by Google App Engine
This is Rietveld 408576698