| Index: pkg/front_end/lib/src/fasta/source/stack_listener.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/source/stack_listener.dart b/pkg/front_end/lib/src/fasta/source/stack_listener.dart
|
| index fddbdc25ad9913face974d4dc8acab6df2b42424..2837bc10a761e5dd2a2926f8fa51a84ed9bd5f35 100644
|
| --- a/pkg/front_end/lib/src/fasta/source/stack_listener.dart
|
| +++ b/pkg/front_end/lib/src/fasta/source/stack_listener.dart
|
| @@ -111,7 +111,7 @@ abstract class StackListener extends Listener {
|
| @override
|
| void handleIdentifier(Token token, IdentifierContext context) {
|
| debugEvent("handleIdentifier");
|
| - push(token.value);
|
| + push(token.lexeme);
|
| }
|
|
|
| @override
|
| @@ -214,7 +214,7 @@ abstract class StackListener extends Listener {
|
| debugEvent("endLiteralString");
|
| if (interpolationCount == 0) {
|
| Token token = pop();
|
| - push(unescapeString(token.value));
|
| + push(unescapeString(token.lexeme));
|
| } else {
|
| internalError("String interpolation not implemented.");
|
| }
|
|
|