Index: src/handles.cc |
=================================================================== |
--- src/handles.cc (revision 5675) |
+++ src/handles.cc (working copy) |
@@ -210,6 +210,14 @@ |
} |
+void NumberDictionarySet(Handle<NumberDictionary> dictionary, |
+ uint32_t index, |
+ Handle<Object> value, |
+ PropertyDetails details) { |
+ CALL_HEAP_FUNCTION_VOID(dictionary->Set(index, *value, details)); |
+} |
+ |
+ |
void FlattenString(Handle<String> string) { |
CALL_HEAP_FUNCTION_VOID(string->TryFlatten()); |
} |