| Index: src/json-parser.h
|
| diff --git a/src/json-parser.h b/src/json-parser.h
|
| index 7265165ac11c37a4960fe49bbf3d03b5ecc460b6..ba05230ceeea7655229be8cf94696cab21e857e5 100644
|
| --- a/src/json-parser.h
|
| +++ b/src/json-parser.h
|
| @@ -326,7 +326,7 @@ Handle<Object> JsonParser<seq_ascii>::ParseJsonObject() {
|
| // Parse a JSON array. Position must be right at '['.
|
| template <bool seq_ascii>
|
| Handle<Object> JsonParser<seq_ascii>::ParseJsonArray() {
|
| - ZoneScope zone_scope(isolate(), DELETE_ON_EXIT);
|
| + ZoneScope zone_scope(zone(), DELETE_ON_EXIT);
|
| ZoneList<Handle<Object> > elements(4, zone());
|
| ASSERT_EQ(c0_, '[');
|
|
|
|
|