clang
9.0.0
|
A little helper class used to produce diagnostics. More...
#include "clang/Basic/Diagnostic.h"
Public Member Functions | |
DiagnosticBuilder (const DiagnosticBuilder &D) | |
Copy constructor. More... | |
DiagnosticBuilder & | operator= (const DiagnosticBuilder &)=delete |
~DiagnosticBuilder () | |
Emits the diagnostic. More... | |
const DiagnosticBuilder & | setForceEmit () const |
Forces the diagnostic to be emitted. More... | |
operator bool () const | |
Conversion of DiagnosticBuilder to bool always returns true . More... | |
void | AddString (StringRef S) const |
void | AddTaggedVal (intptr_t V, DiagnosticsEngine::ArgumentKind Kind) const |
void | AddSourceRange (const CharSourceRange &R) const |
void | AddFixItHint (const FixItHint &Hint) const |
void | addFlagValue (StringRef V) const |
Static Public Member Functions | |
static DiagnosticBuilder | getEmpty () |
Retrieve an empty diagnostic builder. More... | |
Protected Member Functions | |
void | FlushCounts () |
void | Clear () const |
Clear out the current diagnostic. More... | |
bool | isActive () const |
Determine whether this diagnostic is still active. More... | |
bool | Emit () |
Force the diagnostic builder to emit the diagnostic now. More... | |
Friends | |
class | DiagnosticsEngine |
class | PartialDiagnostic |
A little helper class used to produce diagnostics.
This is constructed by the DiagnosticsEngine::Report method, and allows insertion of extra information (arguments and source ranges) into the currently "in flight" diagnostic. When the temporary for the builder is destroyed, the diagnostic is issued.
Note that many of these will be created as temporary objects (many call sites), so we want them to be small and we never want their address taken. This ensures that compilers with somewhat reasonable optimizers will promote the common fields to registers, eliminating increments of the NumArgs field, for example.
Definition at line 1045 of file Diagnostic.h.
|
inline |
Copy constructor.
When copied, this "takes" the diagnostic info from the input and neuters it.
Definition at line 1115 of file Diagnostic.h.
References Clear().
|
inline |
Emits the diagnostic.
Definition at line 1126 of file Diagnostic.h.
|
inline |
Definition at line 1171 of file Diagnostic.h.
References clang::FixItHint::isNull().
Referenced by addFixitForObjCARCConversion(), clang::PartialDiagnostic::Emit(), and clang::operator<<().
|
inline |
|
inline |
Definition at line 1166 of file Diagnostic.h.
Referenced by clang::PartialDiagnostic::Emit(), and clang::operator<<().
|
inline |
Definition at line 1150 of file Diagnostic.h.
Referenced by clang::PartialDiagnostic::Emit(), and clang::operator<<().
|
inline |
Definition at line 1158 of file Diagnostic.h.
References V.
Referenced by clang::PartialDiagnostic::Emit(), and clang::operator<<().
|
inlineprotected |
Clear out the current diagnostic.
Definition at line 1078 of file Diagnostic.h.
Referenced by DiagnosticBuilder().
|
inlineprotected |
Force the diagnostic builder to emit the diagnostic now.
Once this function has been called, the DiagnosticBuilder object should not be used again before it is destroyed.
Definition at line 1094 of file Diagnostic.h.
|
inlineprotected |
Definition at line 1073 of file Diagnostic.h.
|
inlinestatic |
Retrieve an empty diagnostic builder.
Definition at line 1131 of file Diagnostic.h.
|
inlineprotected |
Determine whether this diagnostic is still active.
Definition at line 1085 of file Diagnostic.h.
|
inline |
Conversion of DiagnosticBuilder to bool always returns true
.
This allows is to be used in boolean error contexts (where true
is used to indicate that an error has occurred), like:
Definition at line 1148 of file Diagnostic.h.
|
delete |
|
inline |
Forces the diagnostic to be emitted.
Definition at line 1136 of file Diagnostic.h.
Referenced by PrintExpected(), PrintUnexpected(), and clang::VerifyDiagnosticConsumer::UpdateParsedFileStatus().
|
friend |
Definition at line 1046 of file Diagnostic.h.
|
friend |
Definition at line 1047 of file Diagnostic.h.