| 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);
|
| }
|
|
|
|
|