// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include "qmljsglobal_p.h" #include "qmljs/qmljsconstants.h" // Include the API version here, to avoid complications when querying it for the // QmlSourceLocation -> line/column change. #include "qmljssourcelocation_p.h" QT_QML_BEGIN_NAMESPACE namespace QmlJS { class DiagnosticMessage { public: QString message; Severity::Enum kind = Severity::Error; SourceLocation loc; static Severity::Enum qtMsgTypeToKind(QtMsgType msgType) { switch (msgType) { case QtDebugMsg: return Severity::Hint; case QtWarningMsg: return Severity::Warning; case QtCriticalMsg: return Severity::Error; case QtFatalMsg: return Severity::Error; case QtInfoMsg: default: return Severity::MaybeWarning; } } DiagnosticMessage() {} DiagnosticMessage(Severity::Enum kind, SourceLocation loc, QString message): message(message), kind(kind), loc(loc) { } bool isError() const { return kind == Severity::Error; } bool isWarning() const { return kind == Severity::Warning; } bool isValid() const { return !message.isEmpty(); } }; } // namespace QmlJS QT_QML_END_NAMESPACE QT_BEGIN_NAMESPACE Q_DECLARE_TYPEINFO(QmlJS::DiagnosticMessage, Q_MOVABLE_TYPE); QT_END_NAMESPACE