Chromium Code Reviews| Index: runtime/vm/parser.cc |
| =================================================================== |
| --- runtime/vm/parser.cc (revision 33386) |
| +++ runtime/vm/parser.cc (working copy) |
| @@ -380,8 +380,8 @@ |
| String* Parser::CurrentLiteral() const { |
| - String& result = String::ZoneHandle(isolate_, String::null()); |
| - result = tokens_iterator_.CurrentLiteral(); |
| + String& result = |
| + String::ZoneHandle(isolate_, tokens_iterator_.CurrentLiteral()); |
| return &result; |
| } |