diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2016-04-10 09:28:39 +0000 |
commit | 32761a6cee1d0dee366b885b7b9c777e67885688 (patch) | |
tree | d6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/runtime/MapConstructor.h | |
parent | a4e969f4965059196ca948db781e52f7cfebf19e (diff) | |
download | WebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz |
webkitgtk-2.4.11webkitgtk-2.4.11
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&); }; |