diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h b/Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h index b65b523b6..61ee80326 100644 --- a/Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h +++ b/Source/JavaScriptCore/runtime/JSArrayBufferConstructor.h @@ -31,6 +31,7 @@ namespace JSC { class JSArrayBufferPrototype; +class GetterSetter; class JSArrayBufferConstructor : public InternalFunction { public: @@ -38,10 +39,10 @@ public: protected: JSArrayBufferConstructor(VM&, Structure*); - void finishCreation(VM&, JSArrayBufferPrototype*); + void finishCreation(VM&, JSArrayBufferPrototype*, GetterSetter* speciesSymbol); public: - static JSArrayBufferConstructor* create(VM&, Structure*, JSArrayBufferPrototype*); + static JSArrayBufferConstructor* create(VM&, Structure*, JSArrayBufferPrototype*, GetterSetter* speciesSymbol); DECLARE_INFO; |