summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/MapConstructor.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
commit32761a6cee1d0dee366b885b7b9c777e67885688 (patch)
treed6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/runtime/MapConstructor.h
parenta4e969f4965059196ca948db781e52f7cfebf19e (diff)
downloadWebKitGtk-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.h7
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&);
};