| Index: src/parser.cc
|
| diff --git a/src/parser.cc b/src/parser.cc
|
| index ddb13003af9561c5b5e9061f59cf1403693006c0..9faa7f73274165cd3d7b3c0b69ff20759d028bab 100644
|
| --- a/src/parser.cc
|
| +++ b/src/parser.cc
|
| @@ -3660,11 +3660,9 @@ Handle<Object> JsonParser::ParseJsonObject() {
|
| if (value.is_null()) return Handle<Object>::null();
|
| uint32_t index;
|
| if (key->AsArrayIndex(&index)) {
|
| - CALL_HEAP_FUNCTION_INLINE(
|
| - (*json_object)->SetElement(index, *value, true));
|
| + SetOwnElement(json_object, index, value);
|
| } else {
|
| - CALL_HEAP_FUNCTION_INLINE(
|
| - (*json_object)->SetPropertyPostInterceptor(*key, *value, NONE));
|
| + IgnoreAttributesAndSetLocalProperty(json_object, key, value, NONE);
|
| }
|
| } while (scanner_.Next() == Token::COMMA);
|
| if (scanner_.current_token() != Token::RBRACE) {
|
|
|