| Index: src/json-parser.h
 | 
| diff --git a/src/json-parser.h b/src/json-parser.h
 | 
| index ca796a69907e090363180d9500cac4797387b916..2b7077e1944c4b779d0ffc4aa61d53df1ba4d007 100644
 | 
| --- a/src/json-parser.h
 | 
| +++ b/src/json-parser.h
 | 
| @@ -303,11 +303,12 @@ Handle<Object> JsonParser<seq_ascii>::ParseJsonObject() {
 | 
|  
 | 
|        uint32_t index;
 | 
|        if (key->AsArrayIndex(&index)) {
 | 
| -        SetOwnElement(json_object, index, value, kNonStrictMode);
 | 
| +        JSObject::SetOwnElement(json_object, index, value, kNonStrictMode);
 | 
|        } else if (key->Equals(isolate()->heap()->Proto_symbol())) {
 | 
|          SetPrototype(json_object, value);
 | 
|        } else {
 | 
| -        SetLocalPropertyIgnoreAttributes(json_object, key, value, NONE);
 | 
| +        JSObject::SetLocalPropertyIgnoreAttributes(
 | 
| +            json_object, key, value, NONE);
 | 
|        }
 | 
|      } while (MatchSkipWhiteSpace(','));
 | 
|      if (c0_ != '}') {
 | 
| 
 |