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

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

Issue 10823184: Basic type inference skeleton (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 8 years, 4 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: dart/lib/compiler/implementation/ssa/nodes.dart
diff --git a/dart/lib/compiler/implementation/ssa/nodes.dart b/dart/lib/compiler/implementation/ssa/nodes.dart
index 8899d9fe6e228fef796cb1ab7577c9528b0a700e..439c684430ab7ba78499e41f3696b8a8c022a359 100644
--- a/dart/lib/compiler/implementation/ssa/nodes.dart
+++ b/dart/lib/compiler/implementation/ssa/nodes.dart
@@ -1921,7 +1921,7 @@ class HLocalValue extends HInstruction {
class HParameterValue extends HLocalValue {
HParameterValue(Element element) : super(element);
- toString() => 'parameter ${sourceElement.name}';
+ toString() => 'parameter ${sourceElement.name.slowToString()}';
accept(HVisitor visitor) => visitor.visitParameterValue(this);
}

Powered by Google App Engine
This is Rietveld 408576698