blob: 7d3f3a6bc4b229380614aef040207f7cfc16519e (
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
26
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
// Qt-Security score:significant
#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
|