summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h
diff options
context:
space:
mode:
authorKurt Korbatits <kurt.korbatits@nokia.com>2009-10-22 21:18:11 (GMT)
committerKurt Korbatits <kurt.korbatits@nokia.com>2009-10-22 21:18:11 (GMT)
commit4d1a9b18b905f21b70608b13f4789dadec6bc181 (patch)
treebfa0d9364432b0c4fc55648acc0f99a3a12e42f9 /src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h
parenta6a8e2b1918b2037c9d79e59aabf04ef09bee73e (diff)
parent6e84a8f0d93f178611a40917fec92648e956fe38 (diff)
downloadQt-4d1a9b18b905f21b70608b13f4789dadec6bc181.zip
Qt-4d1a9b18b905f21b70608b13f4789dadec6bc181.tar.gz
Qt-4d1a9b18b905f21b70608b13f4789dadec6bc181.tar.bz2
Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h b/src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h
index 66e78c3..d8b1479 100644
--- a/src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h
+++ b/src/3rdparty/webkit/JavaScriptCore/runtime/JSVariableObject.h
@@ -60,10 +60,11 @@ namespace JSC {
static PassRefPtr<Structure> createStructure(JSValue prototype)
{
- return Structure::create(prototype, TypeInfo(ObjectType, HasStandardGetOwnPropertySlot | HasDefaultMark));
+ return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags));
}
protected:
+ static const unsigned StructureFlags = OverridesGetPropertyNames | JSObject::StructureFlags;
// Subclasses of JSVariableObject can subclass this struct to add data
// without increasing their own size (since there's a hard limit on the
// size of a JSCell).