aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4regexpobject_p.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h
index c95c00bbf6..80868d90db 100644
--- a/src/qml/jsruntime/qv4regexpobject_p.h
+++ b/src/qml/jsruntime/qv4regexpobject_p.h
@@ -74,6 +74,11 @@ struct RegExpObject: Object {
RegExp_Multiline = 0x04
};
+ enum {
+ Index_ArrayIndex = ArrayObject::LengthPropertyIndex + 1,
+ Index_ArrayInput = Index_ArrayIndex + 1
+ };
+
RegExp* value;
Property *lastIndexProperty(ExecutionContext *ctx);
bool global;