clang 19.0.0git
Public Member Functions | List of all members
clang::Parser::ParseScope Class Reference

ParseScope - Introduces a new scope for parsing. More...

#include "clang/Parse/Parser.h"

Public Member Functions

 ParseScope (Parser *Self, unsigned ScopeFlags, bool EnteredScope=true, bool BeforeCompoundStmt=false)
 
void Exit ()
 
 ~ParseScope ()
 

Detailed Description

ParseScope - Introduces a new scope for parsing.

The kind of scope is determined by ScopeFlags. Objects of this type should be created on the stack to coincide with the position where the parser enters the new scope, and this object's constructor will create that new scope. Similarly, once the object is destroyed the parser will exit the scope.

Definition at line 1163 of file Parser.h.

Constructor & Destructor Documentation

◆ ParseScope()

clang::Parser::ParseScope::ParseScope ( Parser Self,
unsigned  ScopeFlags,
bool  EnteredScope = true,
bool  BeforeCompoundStmt = false 
)
inline

Definition at line 1172 of file Parser.h.

◆ ~ParseScope()

clang::Parser::ParseScope::~ParseScope ( )
inline

Definition at line 1194 of file Parser.h.

References Exit().

Member Function Documentation

◆ Exit()

void clang::Parser::ParseScope::Exit ( )
inline

Definition at line 1187 of file Parser.h.

Referenced by ~ParseScope().


The documentation for this class was generated from the following file: