diff options
author | Simon Hausmann <[email protected]> | 2014-01-31 12:18:51 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-02-03 14:38:03 +0100 |
commit | fd52557b1f20a0464bb4b594d0e5897fa44e723b (patch) | |
tree | 55d522d4738e12439871458251d3a05216ee0d89 /src/qml/compiler/qv4compileddata_p.h | |
parent | 043acc2332056d087966d5723b26b0fa610d1375 (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 <[email protected]>
Diffstat (limited to 'src/qml/compiler/qv4compileddata_p.h')
-rw-r--r-- | src/qml/compiler/qv4compileddata_p.h | 3 |
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; |