Chromium Code Reviews| Index: runtime/vm/parser.cc |
| =================================================================== |
| --- runtime/vm/parser.cc (revision 33332) |
| +++ runtime/vm/parser.cc (working copy) |
| @@ -380,7 +380,7 @@ |
| String* Parser::CurrentLiteral() const { |
| - String& result = String::ZoneHandle(); |
| + String& result = String::ZoneHandle(isolate_, String::null()); |
| result = tokens_iterator_.CurrentLiteral(); |
|
Ivan Posva
2014/03/06 10:32:45
Why don't you merge these two lines?
srdjan
2014/03/06 17:52:02
Done in a following CL.
|
| return &result; |
| } |