| Index: lib/compiler/implementation/tree_validator.dart
|
| diff --git a/lib/compiler/implementation/tree_validator.dart b/lib/compiler/implementation/tree_validator.dart
|
| index 9683721a6b0cb464feef6ece6dfdfa7c717647dd..8a1d30eb1a3c819dcabf194b9f0f780795ba6820 100644
|
| --- a/lib/compiler/implementation/tree_validator.dart
|
| +++ b/lib/compiler/implementation/tree_validator.dart
|
| @@ -60,7 +60,7 @@ class InvalidNodeError {
|
| InvalidNodeError(this.node, [this.message]);
|
|
|
| toString() {
|
| - String nodeString = new Unparser(true).unparse(node);
|
| + String nodeString = node.toDebugString();
|
| String result = 'invalid node: $nodeString';
|
| if (message !== null) result = '$result ($message)';
|
| return result;
|
|
|