diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/MapConstructor.h')
| -rw-r--r-- | Source/JavaScriptCore/runtime/MapConstructor.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/runtime/MapConstructor.h b/Source/JavaScriptCore/runtime/MapConstructor.h index 0462d7466..1a85de5b1 100644 --- a/Source/JavaScriptCore/runtime/MapConstructor.h +++ b/Source/JavaScriptCore/runtime/MapConstructor.h @@ -31,16 +31,15 @@ namespace JSC { class MapPrototype; -class GetterSetter; class MapConstructor : public InternalFunction { public: typedef InternalFunction Base; - static MapConstructor* create(VM& vm, Structure* structure, MapPrototype* mapPrototype, GetterSetter* speciesSymbol) + static MapConstructor* create(VM& vm, Structure* structure, MapPrototype* mapPrototype) { MapConstructor* constructor = new (NotNull, allocateCell<MapConstructor>(vm.heap)) MapConstructor(vm, structure); - constructor->finishCreation(vm, mapPrototype, speciesSymbol); + constructor->finishCreation(vm, mapPrototype); return constructor; } @@ -56,7 +55,7 @@ private: : Base(vm, structure) { } - void finishCreation(VM&, MapPrototype*, GetterSetter* speciesSymbol); + void finishCreation(VM&, MapPrototype*); static ConstructType getConstructData(JSCell*, ConstructData&); static CallType getCallData(JSCell*, CallData&); }; |
