| Index: src/factory.cc
|
| diff --git a/src/factory.cc b/src/factory.cc
|
| index 00fc6bbcb33c63c2f354ffebcc9d1c1a1f14fda0..252c97ced3177e5e0e32845e0fead4d765d34aab 100644
|
| --- a/src/factory.cc
|
| +++ b/src/factory.cc
|
| @@ -948,6 +948,13 @@ void Factory::BecomeJSFunction(Handle<JSReceiver> object) {
|
| }
|
|
|
|
|
| +void Factory::SetIdentityHash(Handle<JSObject> object, Object* hash) {
|
| + CALL_HEAP_FUNCTION_VOID(
|
| + isolate(),
|
| + object->SetIdentityHash(hash, ALLOW_CREATION));
|
| +}
|
| +
|
| +
|
| Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(
|
| Handle<String> name,
|
| int number_of_literals,
|
|
|