Index: src/json-stringifier.cc |
diff --git a/src/json-stringifier.cc b/src/json-stringifier.cc |
index cc859929d79db46a6114f705ebe4df7f94c2e1c1..68253a60af07c4928d73e0e00226b0184306fd31 100644 |
--- a/src/json-stringifier.cc |
+++ b/src/json-stringifier.cc |
@@ -465,7 +465,7 @@ BasicJsonStringifier::Result BasicJsonStringifier::SerializeJSReceiverSlow( |
Handle<FixedArray> contents; |
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(); |