aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qqmljsannotation.cpp
blob: 2d5814f0a7bce1deeeb48e42f46d89e01833c606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "qqmljsannotation_p.h"

QT_BEGIN_NAMESPACE

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 (std::holds_alternative<QString>(reason)) {
            deprecation.reason = std::get<QString>(reason);
        }
    }

    return deprecation;
}

QT_END_NAMESPACE