| Index: src/factory.cc
|
| diff --git a/src/factory.cc b/src/factory.cc
|
| index 630d9456a0a886de28e963e41a253136e0de66fc..a26b1066c36d44d01250057384a30c058a4684fe 100644
|
| --- a/src/factory.cc
|
| +++ b/src/factory.cc
|
| @@ -1081,6 +1081,16 @@ Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
|
| }
|
|
|
|
|
| +Handle<NotSeededNumberDictionary> Factory::NotSeededDictionaryAtNumberPut(
|
| + Handle<NotSeededNumberDictionary> dictionary,
|
| + uint32_t key,
|
| + Handle<Object> value) {
|
| + CALL_HEAP_FUNCTION(isolate(),
|
| + dictionary->AtNumberPut(key, *value),
|
| + NotSeededNumberDictionary);
|
| +}
|
| +
|
| +
|
| Handle<JSFunction> Factory::NewFunctionHelper(Handle<String> name,
|
| Handle<Object> prototype) {
|
| Handle<SharedFunctionInfo> function_share = NewSharedFunctionInfo(name);
|
|
|