| Index: src/json-parser.h
|
| diff --git a/src/json-parser.h b/src/json-parser.h
|
| index 5d67ae2a9a66ab716bd9ff0ee8c1ec8b01155915..533e63152004b5fb58455e4829f0752b07087b39 100644
|
| --- a/src/json-parser.h
|
| +++ b/src/json-parser.h
|
| @@ -359,7 +359,7 @@ Handle<Object> JsonParser<seq_ascii>::ParseJsonObject() {
|
| Handle<Object> value = ParseJsonValue();
|
| if (value.is_null()) return ReportUnexpectedCharacter();
|
|
|
| - JSObject::SetOwnElement(json_object, index, value, SLOPPY);
|
| + JSObject::SetOwnElement(json_object, index, value, SLOPPY).Assert();
|
| continue;
|
| }
|
| // Not an index, fallback to the slow path.
|
|
|