Index: src/json-stringifier.cc |
diff --git a/src/json-stringifier.cc b/src/json-stringifier.cc |
index 79463f1d983b68016dfbb89e051720fc2b328b70..955b7e3c222eedd210ba6ac9f294797382e66663 100644 |
--- a/src/json-stringifier.cc |
+++ b/src/json-stringifier.cc |
@@ -544,9 +544,9 @@ BasicJsonStringifier::Result BasicJsonStringifier::SerializeJSReceiverSlow( |
if (contents.is_null()) { |
ASSIGN_RETURN_ON_EXCEPTION_VALUE( |
isolate_, contents, |
- JSReceiver::GetKeys(object, OWN_ONLY, ENUMERABLE_STRINGS), EXCEPTION); |
+ KeyAccumulator::GetKeys(object, OWN_ONLY, ENUMERABLE_STRINGS), |
+ EXCEPTION); |
} |
- |
builder_.AppendCharacter('{'); |
Indent(); |
bool comma = false; |