aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/qv4object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/qv4object.h')
-rw-r--r--src/v4/qv4object.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/v4/qv4object.h b/src/v4/qv4object.h
index 226c00566b..d1bac5f03f 100644
--- a/src/v4/qv4object.h
+++ b/src/v4/qv4object.h
@@ -124,6 +124,11 @@ struct Q_V4_EXPORT Object: Managed {
SparseArray *sparseArray;
ExternalResource *externalResource;
+ enum {
+ InlinePropertySize = 4
+ };
+ Property inlineProperties[InlinePropertySize];
+
Object(ExecutionEngine *engine);
Object(ExecutionContext *context);
~Object();