| Index: src/json-stringifier.h
|
| diff --git a/src/json-stringifier.h b/src/json-stringifier.h
|
| index 5c0459eb1b0aa11bfc6c6125bac53db27aa2cdae..d97ca2ba7374ec0b043bb36200702d3c32033d23 100644
|
| --- a/src/json-stringifier.h
|
| +++ b/src/json-stringifier.h
|
| @@ -567,8 +567,7 @@ BasicJsonStringifier::Result BasicJsonStringifier::SerializeJSObject(
|
| Handle<FixedArray> contents;
|
| ASSIGN_RETURN_ON_EXCEPTION_VALUE(
|
| isolate_, contents,
|
| - JSReceiver::GetKeys(object, JSReceiver::OWN_ONLY, ENUMERABLE_STRINGS),
|
| - EXCEPTION);
|
| + JSReceiver::GetKeys(object, OWN_ONLY, ENUMERABLE_STRINGS), EXCEPTION);
|
|
|
| for (int i = 0; i < contents->length(); i++) {
|
| Object* key = contents->get(i);
|
|
|