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

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

Issue 1161793002: Revert "dart2js cps: 'is' checks on types with type arguments." (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
Index: pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
index 77b757f902d81389904f8ce913cf1a809ce9b0f1..4be0f0cafb94acca095fd7589afe62bf57b146a6 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
@@ -236,9 +236,8 @@ class IRTracer extends TracerUtil implements cps_ir.Visitor {
String dummy = names.name(node);
String operator = node.isTypeTest ? 'is' : 'as';
List<String> entries = new List<String>();
- String value = formatReference(node.value);
- String kont = formatReference(node.continuation);
- printStmt(dummy, "TypeOperator ($operator $value ${node.type}) $kont");
+ String receiver = formatReference(node.receiver);
+ printStmt(dummy, "TypeOperator ($operator $receiver ${node.type})");
}
visitInvokeContinuation(cps_ir.InvokeContinuation node) {
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart ('k') | pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698