| Index: src/stub-cache.h
|
| diff --git a/src/stub-cache.h b/src/stub-cache.h
|
| index 0c756a139291209a8d0437c3e0ba891002dc1e3a..c085b51f2e4dbf62b0cf59c626a6abb9f29cb486 100644
|
| --- a/src/stub-cache.h
|
| +++ b/src/stub-cache.h
|
| @@ -140,7 +140,7 @@ class StubCache {
|
| Handle<Code> ComputeLoadGlobal(Handle<Name> name,
|
| Handle<JSObject> object,
|
| Handle<GlobalObject> holder,
|
| - Handle<JSGlobalPropertyCell> cell,
|
| + Handle<PropertyCell> cell,
|
| bool is_dont_delete);
|
|
|
| // ---
|
| @@ -183,7 +183,7 @@ class StubCache {
|
|
|
| Handle<Code> ComputeStoreGlobal(Handle<Name> name,
|
| Handle<GlobalObject> object,
|
| - Handle<JSGlobalPropertyCell> cell,
|
| + Handle<PropertyCell> cell,
|
| StrictModeFlag strict_mode);
|
|
|
| Handle<Code> ComputeStoreCallback(Handle<Name> name,
|
| @@ -251,7 +251,7 @@ class StubCache {
|
| Handle<Name> name,
|
| Handle<JSObject> object,
|
| Handle<GlobalObject> holder,
|
| - Handle<JSGlobalPropertyCell> cell,
|
| + Handle<PropertyCell> cell,
|
| Handle<JSFunction> function);
|
|
|
| // ---
|
| @@ -765,7 +765,7 @@ class LoadStubCompiler: public BaseLoadStubCompiler {
|
|
|
| Handle<Code> CompileLoadGlobal(Handle<JSObject> object,
|
| Handle<GlobalObject> holder,
|
| - Handle<JSGlobalPropertyCell> cell,
|
| + Handle<PropertyCell> cell,
|
| Handle<Name> name,
|
| bool is_dont_delete);
|
|
|
| @@ -890,7 +890,7 @@ class StoreStubCompiler: public BaseStoreStubCompiler {
|
| Handle<Name> name);
|
|
|
| Handle<Code> CompileStoreGlobal(Handle<GlobalObject> object,
|
| - Handle<JSGlobalPropertyCell> holder,
|
| + Handle<PropertyCell> holder,
|
| Handle<Name> name);
|
|
|
| private:
|
| @@ -1007,7 +1007,7 @@ class CallStubCompiler: public StubCompiler {
|
|
|
| Handle<Code> CompileCallGlobal(Handle<JSObject> object,
|
| Handle<GlobalObject> holder,
|
| - Handle<JSGlobalPropertyCell> cell,
|
| + Handle<PropertyCell> cell,
|
| Handle<JSFunction> function,
|
| Handle<Name> name);
|
|
|
|
|