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

Unified Diff: lib/compiler/implementation/ssa/tracer.dart

Issue 10115026: Address the remaining review comments on http://chromiumcodereview.appspot.com/9431029. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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: lib/compiler/implementation/ssa/tracer.dart
diff --git a/lib/compiler/implementation/ssa/tracer.dart b/lib/compiler/implementation/ssa/tracer.dart
index 7d62e9852051431ec1398f9f4ec55804aaf3ed2f..364a7d80f3c31ff90c4227498cea7e17319d0326 100644
--- a/lib/compiler/implementation/ssa/tracer.dart
+++ b/lib/compiler/implementation/ssa/tracer.dart
@@ -431,7 +431,7 @@ class HInstructionStringifier implements HVisitor<String> {
}
String visitIs(HIs node) {
- String type = node.typeName.toString();
+ String type = node.typeExpression.toString();
return "TypeTest: ${temporaryId(node.expression)} is $type";
}
}

Powered by Google App Engine
This is Rietveld 408576698