aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2021-05-10 13:37:20 +0200
committerMaximilian Goldstein <max.goldstein@qt.io>2021-05-11 10:33:16 +0200
commit44342fb446216576e3267af928e3789805cd4690 (patch)
treea15e24366761b6ba9161a5ac613f16819920df05 /tools
parent0d7e9d95cbfda42e45a484046280f17d5b16df38 (diff)
qmllint: Fix unknownBuiltins not being ignored in all cases
Previously we only skipped over them when they occurred in a property access chain (not covering the beginning, methods etc.) now we should always ignore them safely. Change-Id: I405de6d97a15cba1db641b2c8310427cc9558d68 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmllint/checkidentifiers.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/qmllint/checkidentifiers.cpp b/tools/qmllint/checkidentifiers.cpp
index 4cfcaf91d3..66903c29a8 100644
--- a/tools/qmllint/checkidentifiers.cpp
+++ b/tools/qmllint/checkidentifiers.cpp
@@ -119,6 +119,9 @@ void CheckIdentifiers::checkMemberAccess(const QVector<FieldMember> &members,
return;
}
+ if (unknownBuiltins.contains(scope->internalName()))
+ return;
+
const auto property = scope->property(access.m_name);
if (!property.propertyName().isEmpty()) {
const auto binding = scope->propertyBinding(access.m_name);