forked from qt-creator/qt-creator
QmlJs: sync qmljs parser
The last version of the grammar contains some constructs that the code model needs to know. Task-number: QTCREATORBUG-17842 Change-Id: I6250f96431acc05b19f3fd1b6cc268a07485cf0f Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -323,8 +323,8 @@ protected:
|
||||
|
||||
bool visit(UiPublicMember *ast)
|
||||
{
|
||||
if (ast->typeToken.isValid() && !ast->memberType.isEmpty()) {
|
||||
if (m_scopeChain.context()->lookupType(m_scopeChain.document().data(), QStringList(ast->memberType.toString())))
|
||||
if (ast->typeToken.isValid() && ast->isValid()) {
|
||||
if (m_scopeChain.context()->lookupType(m_scopeChain.document().data(), QStringList(ast->memberTypeName().toString())))
|
||||
addUse(ast->typeToken, SemanticHighlighter::QmlTypeType);
|
||||
}
|
||||
if (ast->identifierToken.isValid())
|
||||
|
||||
Reference in New Issue
Block a user