aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compileddata_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r--src/qml/compiler/qv4compileddata_p.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h
index 08c4c65a1f..a9927f33a9 100644
--- a/src/qml/compiler/qv4compileddata_p.h
+++ b/src/qml/compiler/qv4compileddata_p.h
@@ -236,7 +236,8 @@ struct Q_QML_PRIVATE_EXPORT Binding
IsResolvedEnum = 0x10,
IsListItem = 0x20,
IsBindingToAlias = 0x40,
- IsDeferredBinding = 0x80
+ IsDeferredBinding = 0x80,
+ IsCustomParserBinding = 0x100,
};
quint32 flags : 16;
@@ -396,7 +397,8 @@ struct Object
enum Flags {
NoFlag = 0x0,
IsComponent = 0x1, // object was identified to be an explicit or implicit component boundary
- HasDeferredBindings = 0x2 // any of the bindings are deferred
+ HasDeferredBindings = 0x2, // any of the bindings are deferred
+ HasCustomParserBindings = 0x4
};
// Depending on the use, this may be the type name to instantiate before instantiating this