| Index: pkg/compiler/lib/src/tree/prettyprint.dart
|
| diff --git a/pkg/compiler/lib/src/tree/prettyprint.dart b/pkg/compiler/lib/src/tree/prettyprint.dart
|
| index 6a9aa96a2baa2d75de201d63c21db9f6bdc08a50..a6bdb4c4430cb882c98b94da1ee3fb2d4305cca0 100644
|
| --- a/pkg/compiler/lib/src/tree/prettyprint.dart
|
| +++ b/pkg/compiler/lib/src/tree/prettyprint.dart
|
| @@ -21,7 +21,7 @@ class PrettyPrinter extends Indentation with Tagging<Node> implements Visitor {
|
|
|
| String valueToString(var value) {
|
| if (value is Token) {
|
| - return value.value;
|
| + return value.lexeme;
|
| }
|
| return value;
|
| }
|
|
|