| Index: src/handles.cc
|
| diff --git a/src/handles.cc b/src/handles.cc
|
| index 63f582ba86dcbb34e07f56b96f5bc611e1082062..59212802f577bc628755a0620f2d0f37e2ee56fb 100644
|
| --- a/src/handles.cc
|
| +++ b/src/handles.cc
|
| @@ -228,12 +228,14 @@ void TransformToFastProperties(Handle<JSObject> object,
|
| }
|
|
|
|
|
| -void NumberDictionarySet(Handle<NumberDictionary> dictionary,
|
| - uint32_t index,
|
| - Handle<Object> value,
|
| - PropertyDetails details) {
|
| - CALL_HEAP_FUNCTION_VOID(dictionary->GetIsolate(),
|
| - dictionary->Set(index, *value, details));
|
| +Handle<NumberDictionary> NumberDictionarySet(
|
| + Handle<NumberDictionary> dictionary,
|
| + uint32_t index,
|
| + Handle<Object> value,
|
| + PropertyDetails details) {
|
| + CALL_HEAP_FUNCTION(dictionary->GetIsolate(),
|
| + dictionary->Set(index, *value, details),
|
| + NumberDictionary);
|
| }
|
|
|
|
|
|
|