LLDB mainline
ClangDiagnostic.h
Go to the documentation of this file.
1//===-- ClangDiagnostic.h ---------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGDIAGNOSTIC_H
10#define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGDIAGNOSTIC_H
11
12#include <vector>
13
14#include "clang/Basic/Diagnostic.h"
15
16#include "lldb/lldb-defines.h"
17#include "lldb/lldb-types.h"
18
20
21namespace lldb_private {
22
24public:
25 typedef std::vector<clang::FixItHint> FixItList;
26
27 static inline bool classof(const ClangDiagnostic *) { return true; }
28 static inline bool classof(const Diagnostic *diag) {
29 return diag->getKind() == eDiagnosticOriginClang;
30 }
31
32 ClangDiagnostic(llvm::StringRef message, DiagnosticSeverity severity,
33 uint32_t compiler_id)
34 : Diagnostic(message, severity, eDiagnosticOriginClang, compiler_id) {}
35
36 ~ClangDiagnostic() override = default;
37
38 bool HasFixIts() const override { return !m_fixit_vec.empty(); }
39
40 void AddFixitHint(const clang::FixItHint &fixit) {
41 m_fixit_vec.push_back(fixit);
42 }
43
44 const FixItList &FixIts() const { return m_fixit_vec; }
45private:
47};
48
49} // namespace lldb_private
50#endif // LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGDIAGNOSTIC_H
void AddFixitHint(const clang::FixItHint &fixit)
bool HasFixIts() const override
static bool classof(const Diagnostic *diag)
static bool classof(const ClangDiagnostic *)
const FixItList & FixIts() const
~ClangDiagnostic() override=default
std::vector< clang::FixItHint > FixItList
ClangDiagnostic(llvm::StringRef message, DiagnosticSeverity severity, uint32_t compiler_id)
DiagnosticOrigin getKind() const
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14