diff options
author | Simon Hausmann <[email protected]> | 2014-03-18 08:46:33 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-03-19 08:32:23 +0100 |
commit | c33a79f0a0de8f01b3a43335778e246e1f02598e (patch) | |
tree | 7a0d9c176b0bbfa894ea90919ab71627d31d35f3 /src/qml/compiler/qv4compileddata_p.h | |
parent | 3b2e7bf03b656b38ba7b24acf7ed38de555635f1 (diff) |
Clean, part 3
* Get rid of QQmlScript::Pragma
* Allow retrieving the QML unit size after generation
* Add flag equivalent of .pragma library to QV4::CompiledData
* Remove unused method
Change-Id: I2f95b83f919004013741bc539c82960cc878f3a4
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 186363dcde..474d4c88bc 100644 --- a/src/qml/compiler/qv4compileddata_p.h +++ b/src/qml/compiler/qv4compileddata_p.h @@ -168,7 +168,8 @@ struct Unit IsJavascript = 0x1, IsQml = 0x2, StaticData = 0x4, // Unit data persistent in memory? - IsSingleton = 0x8 + IsSingleton = 0x8, + IsSharedLibrary = 0x10 // .pragma shared? }; quint32 flags; uint stringTableSize; |