enum class Parser::ParsedStmtContext
Description
Flags describing a context in which we're parsing a statement.
Declared at: clang/include/clang/Parse/Parser.h:415
Enumerators
Name | Value | Comment |
---|---|---|
AllowDeclarationsInC | 1 | This context permits declarations in language modes where declarations are not statements. |
AllowStandaloneOpenMPDirectives | 2 | This context permits standalone OpenMP directives. |
InStmtExpr | 4 | This context is at the top level of a GNU statement expression. |
SubStmt | 0 | The context of a regular substatement. |
Compound | 3 | The context of a compound-statement. |
LLVM_BITMASK_LARGEST_ENUMERATOR | 4 |