diff options
author | Fawzi Mohamed <[email protected]> | 2013-11-19 10:42:57 +0100 |
---|---|---|
committer | Fawzi Mohamed <[email protected]> | 2013-11-20 12:27:49 +0100 |
commit | 2fc150b9832505238f8c872a861b3fc06d8b062f (patch) | |
tree | 71c67d62bb2ec6d63e75103276372c331b40672a /src/libs/qmljs/qmljsdocument.h | |
parent | 7fb87fbb0609af9a52b1a2d6a0f7f9290fec87ae (diff) |
qmljs: scan imports
Change-Id: Ied59f5d56c5816d9da57f23a619d604acec76000
Reviewed-by: Thomas Hartmann <[email protected]>
Diffstat (limited to 'src/libs/qmljs/qmljsdocument.h')
-rw-r--r-- | src/libs/qmljs/qmljsdocument.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libs/qmljs/qmljsdocument.h b/src/libs/qmljs/qmljsdocument.h index d10a02c587d..59906c354ec 100644 --- a/src/libs/qmljs/qmljsdocument.h +++ b/src/libs/qmljs/qmljsdocument.h @@ -201,6 +201,9 @@ public: bool wasScanned() const { return _status != NotScanned; } + bool wasFound() const + { return _status != NotFound; } + PluginTypeInfoStatus pluginTypeInfoStatus() const { return _dumpStatus; } |