| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index e97d3eb863266449f75085d1033f192ee34b5227..68a91ff249edf311d06b64a909c52eb718ef0981 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -1311,7 +1311,7 @@ class HFieldGet extends HFieldAccess {
|
| int typeCode() => 27;
|
| bool typeEquals(other) => other is HFieldGet;
|
| bool dataEquals(HFieldGet other) => element == other.element;
|
| - String toString() => "FieldGet $element.name";
|
| + String toString() => "FieldGet $element";
|
| }
|
|
|
| class HFieldSet extends HFieldAccess {
|
| @@ -1328,7 +1328,7 @@ class HFieldSet extends HFieldAccess {
|
| }
|
|
|
| final bool isStatement = true;
|
| - String toString() => "FieldSet $element.name";
|
| + String toString() => "FieldSet $element";
|
| }
|
|
|
| class HLocalGet extends HFieldGet {
|
|
|