| Index: src/bootstrapper.cc
|
| diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc
|
| index a6d3c9cd981c4c84cdf5a22031efbe84c253028e..9b03e09b89c558ca111dfaee3581a882d50365b9 100644
|
| --- a/src/bootstrapper.cc
|
| +++ b/src/bootstrapper.cc
|
| @@ -1331,6 +1331,8 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object,
|
| SimpleInstallFunction(isolate->initial_object_prototype(),
|
| "__lookupSetter__", Builtins::kObjectLookupSetter, 1,
|
| true);
|
| + SimpleInstallFunction(isolate->initial_object_prototype(), "isPrototypeOf",
|
| + Builtins::kObjectPrototypeIsPrototypeOf, 1, true);
|
| SimpleInstallFunction(
|
| isolate->initial_object_prototype(), "propertyIsEnumerable",
|
| Builtins::kObjectPrototypePropertyIsEnumerable, 1, false);
|
|
|