| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index e8c985048455e406c77c6b4c6814261f2cb7ab41..8331a768856547aac4ff4f4bceb05c51b45afeea 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7389,10 +7389,6 @@ class GlobalObject: public JSObject {
|
| return answer;
|
| }
|
|
|
| - // Ensure that the global object has a cell for the given property name.
|
| - static Handle<PropertyCell> EnsurePropertyCell(Handle<GlobalObject> global,
|
| - Handle<Name> name);
|
| -
|
| // Casting.
|
| static inline GlobalObject* cast(Object* obj);
|
|
|
| @@ -7414,6 +7410,10 @@ class JSGlobalObject: public GlobalObject {
|
| // Casting.
|
| static inline JSGlobalObject* cast(Object* obj);
|
|
|
| + // Ensure that the global object has a cell for the given property name.
|
| + static Handle<PropertyCell> EnsurePropertyCell(Handle<JSGlobalObject> global,
|
| + Handle<Name> name);
|
| +
|
| // Dispatched behavior.
|
| DECLARE_PRINTER(JSGlobalObject)
|
| DECLARE_VERIFIER(JSGlobalObject)
|
|
|