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/SetConstructor.h | |
parent | a4e969f4965059196ca948db781e52f7cfebf19e (diff) | |
download | WebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz |
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/JavaScriptCore/runtime/SetConstructor.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/SetConstructor.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/runtime/SetConstructor.h b/Source/JavaScriptCore/runtime/SetConstructor.h index 42fe3eefc..efbd88bb3 100644 --- a/Source/JavaScriptCore/runtime/SetConstructor.h +++ b/Source/JavaScriptCore/runtime/SetConstructor.h @@ -31,16 +31,15 @@ namespace JSC { class SetPrototype; -class GetterSetter; class SetConstructor : public InternalFunction { public: typedef InternalFunction Base; - static SetConstructor* create(VM& vm, Structure* structure, SetPrototype* setPrototype, GetterSetter* speciesSymbol) + static SetConstructor* create(VM& vm, Structure* structure, SetPrototype* setPrototype) { SetConstructor* constructor = new (NotNull, allocateCell<SetConstructor>(vm.heap)) SetConstructor(vm, structure); - constructor->finishCreation(vm, setPrototype, speciesSymbol); + constructor->finishCreation(vm, setPrototype); return constructor; } @@ -56,7 +55,7 @@ private: : Base(vm, structure) { } - void finishCreation(VM&, SetPrototype*, GetterSetter* speciesSymbol); + void finishCreation(VM&, SetPrototype*); static ConstructType getConstructData(JSCell*, ConstructData&); static CallType getCallData(JSCell*, CallData&); }; |