Chromium Code Reviews| Index: src/parser.h |
| diff --git a/src/parser.h b/src/parser.h |
| index 9ce1026c9819ba78879bd7953c17fff1964059a0..71f5d396e4e853c2bd27c0899813b847d0bfb7b9 100644 |
| --- a/src/parser.h |
| +++ b/src/parser.h |
| @@ -668,7 +668,7 @@ class Parser { |
| Expression* NewCall(Expression* expression, |
| ZoneList<Expression*>* arguments, |
| int pos) { |
| - return new Call(expression, arguments, pos); |
| + return new(zone()) Call(expression, arguments, pos); |
| } |