summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/ArrayConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/ArrayConstructor.h')
-rw-r--r--Source/JavaScriptCore/runtime/ArrayConstructor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/runtime/ArrayConstructor.h b/Source/JavaScriptCore/runtime/ArrayConstructor.h
index 040f26c4c..a6ac76ea4 100644
--- a/Source/JavaScriptCore/runtime/ArrayConstructor.h
+++ b/Source/JavaScriptCore/runtime/ArrayConstructor.h
@@ -32,7 +32,6 @@ class JSArray;
class ArrayConstructor : public InternalFunction {
public:
typedef InternalFunction Base;
- static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFlags;
static ArrayConstructor* create(VM& vm, Structure* structure, ArrayPrototype* arrayPrototype)
{
@@ -50,6 +49,7 @@ public:
protected:
void finishCreation(VM&, ArrayPrototype*);
+ static const unsigned StructureFlags = OverridesGetOwnPropertySlot | InternalFunction::StructureFlags;
private:
ArrayConstructor(VM&, Structure*);