aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmljsannotation.cpp
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2021-02-24 16:42:51 +0100
committerMaximilian Goldstein <max.goldstein@qt.io>2021-03-08 15:54:02 +0100
commitbbba1e5614cf320efc27783b2e771520cbe53999 (patch)
treed9bf80f62b75f818b57ffe361e28db93bcc5528f /src/qmlcompiler/qqmljsannotation.cpp
parent7ea690c61dabd2485e80e7fae9aed392ba02c846 (diff)
qmllint: Implement deprecation warnings
Make qmllint warn about @Deprecated {} annotations. Also adds support for annotations in qmlcompiler. [ChangeLog][QML][qmllint] Add support for deprecation annotations. Task-number: QTBUG-84895 Change-Id: Ia506a6c0077a2b9ab3bf4fdac207bd0540635b30 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qmlcompiler/qqmljsannotation.cpp')
-rw-r--r--src/qmlcompiler/qqmljsannotation.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/qmlcompiler/qqmljsannotation.cpp b/src/qmlcompiler/qqmljsannotation.cpp
new file mode 100644
index 0000000000..3d16cca5c2
--- /dev/null
+++ b/src/qmlcompiler/qqmljsannotation.cpp
@@ -0,0 +1,46 @@
+/****************************************************************************
+**
+** Copyright (C) 2021 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the tools applications of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:GPL-EXCEPT$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "qqmljsannotation_p.h"
+
+bool QQmlJSAnnotation::isDeprecation() const { return name == QStringLiteral("Deprecated"); }
+
+QQQmlJSDeprecation QQmlJSAnnotation::deprecation() const {
+ Q_ASSERT(isDeprecation());
+ QQQmlJSDeprecation deprecation;
+ if (bindings.contains(QStringLiteral("reason"))) {
+
+ auto reason = bindings[QStringLiteral("reason")];
+
+ if (reason.typeId() == QMetaType::QString) {
+ deprecation.reason = reason.toString();
+ }
+ }
+
+ return deprecation;
+}