| Index: compiler/java/com/google/dart/compiler/parser/DartParser.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/parser/DartParser.java (revision 7239)
|
| +++ compiler/java/com/google/dart/compiler/parser/DartParser.java (working copy)
|
| @@ -4158,7 +4158,7 @@
|
| }
|
| DartIdentifier identifier;
|
| if (expect(Token.IDENTIFIER) && ctx.getTokenString() != null) {
|
| - identifier = new DartIdentifier(ctx.getTokenString());
|
| + identifier = new DartIdentifier(new String(ctx.getTokenString()));
|
| } else {
|
| identifier = new DartSyntheticErrorIdentifier();
|
| }
|
|
|