aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4compileddata_p.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-01-31 12:18:51 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-03 14:38:03 +0100
commitfd52557b1f20a0464bb4b594d0e5897fa44e723b (patch)
tree55d522d4738e12439871458251d3a05216ee0d89 /src/qml/compiler/qv4compileddata_p.h
parent043acc2332056d087966d5723b26b0fa610d1375 (diff)
[new compiler] Try to resolve qualified enums at type compile time
... by taking some code from the old compiler. This speeds up some bindings and maintains compatibility. Change-Id: If80b1e28214cb655f70fff01a8c885edcb2d3030 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r--src/qml/compiler/qv4compileddata_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4compileddata_p.h b/src/qml/compiler/qv4compileddata_p.h
index e6c37a826f..169f8449d4 100644
--- a/src/qml/compiler/qv4compileddata_p.h
+++ b/src/qml/compiler/qv4compileddata_p.h
@@ -296,7 +296,8 @@ struct Q_QML_EXPORT Binding
IsSignalHandlerExpression = 0x1,
IsSignalHandlerObject = 0x2,
IsOnAssignment = 0x4,
- InitializerForReadOnlyDeclaration = 0x8
+ InitializerForReadOnlyDeclaration = 0x8,
+ IsResolvedEnum = 0x10
};
quint32 flags : 16;