clang
7.0.0
|
RAII object used to inform the actions that we're currently parsing a declaration. More...
#include "clang/Parse/RAIIObjectsForParser.h"
Public Types | |
enum | NoParent_t { NoParent } |
Public Member Functions | |
ParsingDeclRAIIObject (Parser &P, NoParent_t _) | |
ParsingDeclRAIIObject (Parser &P, const sema::DelayedDiagnosticPool *parentPool) | |
Creates a RAII object whose pool is optionally parented by another. More... | |
ParsingDeclRAIIObject (Parser &P, ParsingDeclRAIIObject *other) | |
Creates a RAII object and, optionally, initialize its diagnostics pool by stealing the diagnostics from another RAII object (which is assumed to be the current top pool). More... | |
~ParsingDeclRAIIObject () | |
sema::DelayedDiagnosticPool & | getDelayedDiagnosticPool () |
const sema::DelayedDiagnosticPool & | getDelayedDiagnosticPool () const |
void | reset () |
Resets the RAII object for a new declaration. More... | |
void | abort () |
Signals that the context was completed without an appropriate declaration being parsed. More... | |
void | complete (Decl *D) |
void | abortAndRemember () |
Unregister this object from Sema, but remember all the diagnostics that were emitted into it. More... | |
RAII object used to inform the actions that we're currently parsing a declaration.
This is active when parsing a variable's initializer, but not when parsing the body of a class or function definition.
Definition at line 91 of file RAIIObjectsForParser.h.
Enumerator | |
---|---|
NoParent |
Definition at line 101 of file RAIIObjectsForParser.h.
|
inline |
Definition at line 102 of file RAIIObjectsForParser.h.
|
inline |
Creates a RAII object whose pool is optionally parented by another.
Definition at line 108 of file RAIIObjectsForParser.h.
|
inline |
Creates a RAII object and, optionally, initialize its diagnostics pool by stealing the diagnostics from another RAII object (which is assumed to be the current top pool).
Definition at line 117 of file RAIIObjectsForParser.h.
References abort(), and clang::sema::DelayedDiagnosticPool::steal().
|
inline |
Definition at line 127 of file RAIIObjectsForParser.h.
|
inline |
Signals that the context was completed without an appropriate declaration being parsed.
Definition at line 146 of file RAIIObjectsForParser.h.
Referenced by clang::ParsingDeclSpec::abort(), and ParsingDeclRAIIObject().
|
inline |
Unregister this object from Sema, but remember all the diagnostics that were emitted into it.
Definition at line 157 of file RAIIObjectsForParser.h.
References clang::Sema::PopParsingDeclaration(), and clang::Sema::PushParsingDeclaration().
|
inline |
Definition at line 150 of file RAIIObjectsForParser.h.
Referenced by clang::ParsingDeclSpec::complete(), clang::ParsingDeclarator::complete(), clang::ParsingFieldDeclarator::complete(), and takeDeclAttributes().
|
inline |
Definition at line 131 of file RAIIObjectsForParser.h.
Referenced by clang::ParsingDeclSpec::getDelayedDiagnosticPool().
|
inline |
Definition at line 134 of file RAIIObjectsForParser.h.
|
inline |
Resets the RAII object for a new declaration.
Definition at line 139 of file RAIIObjectsForParser.h.
Referenced by clang::ParsingDeclarator::clear().