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

Unified Diff: sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart

Issue 374413002: Dart2dart rename unresolved getters & Make IsCheck not be a primitive (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 | « sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart b/sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart
index f167ba7d9a18ae43d69977fa7f882d51479287f0..722d75c11e18cfba3d6df3c3639b8c52aa33c3b2 100644
--- a/sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart
+++ b/sdk/lib/_internal/compiler/implementation/ir/ir_tracer.dart
@@ -165,18 +165,12 @@ class IRTracer extends TracerUtil implements ir.Visitor {
printStmt(dummy, "LiteralMap (${entries.join(', ')})");
}
- visitIsCheck(ir.IsCheck node) {
+ visitTypeOperator(ir.TypeOperator node) {
String dummy = names.name(node);
+ String operator = node.operator;
List<String> entries = new List<String>();
String receiver = formatReference(node.receiver);
- printStmt(dummy, "IsCheck ($receiver ${node.type})");
- }
-
- visitAsCast(ir.AsCast node) {
- String dummy = names.name(node);
- List<String> entries = new List<String>();
- String receiver = formatReference(node.receiver);
- printStmt(dummy, "AsCast ($receiver ${node.type})");
+ printStmt(dummy, "TypeOperator ($operator $receiver ${node.type})");
}
visitInvokeContinuation(ir.InvokeContinuation node) {
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ir/ir_nodes.dart ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698