clang 20.0.0git
|
RAII class that determines when any errors have occurred between the time the instance was created and the time it was queried. More...
#include "clang/Basic/Diagnostic.h"
Public Member Functions | |
DiagnosticErrorTrap (DiagnosticsEngine &Diag) | |
bool | hasErrorOccurred () const |
Determine whether any errors have occurred since this object instance was created. | |
bool | hasUnrecoverableErrorOccurred () const |
Determine whether any unrecoverable errors have occurred since this object instance was created. | |
void | reset () |
Set to initial state of "no errors occurred". | |
RAII class that determines when any errors have occurred between the time the instance was created and the time it was queried.
Note that you almost certainly do not want to use this. It's usually meaningless to ask whether a particular scope triggered an error message, because error messages outside that scope can mark things invalid (or cause us to reach an error limit), which can suppress errors within that scope.
Definition at line 1077 of file Diagnostic.h.
|
inlineexplicit |
Definition at line 1083 of file Diagnostic.h.
References reset().
|
inline |
Determine whether any errors have occurred since this object instance was created.
Definition at line 1088 of file Diagnostic.h.
Referenced by clang::driver::Driver::generateCompilationDiagnostics().
|
inline |
Determine whether any unrecoverable errors have occurred since this object instance was created.
Definition at line 1094 of file Diagnostic.h.
Referenced by clang::Scope::hasUnrecoverableErrorOccurred(), and clang::sema::FunctionScopeInfo::hasUnrecoverableErrorOccurred().
|
inline |
Set to initial state of "no errors occurred".
Definition at line 1099 of file Diagnostic.h.
Referenced by clang::sema::FunctionScopeInfo::Clear(), DiagnosticErrorTrap(), and clang::Scope::Init().