Home | History | Annotate | Download | only in src

Lines Matching refs:BlockState

42 //     // Used by FunctionState and BlockState.
142 // FunctionState and BlockState together implement the parser's scope stack.
143 // The parser's current scope is in scope_. BlockState and FunctionState
146 class BlockState BASE_EMBEDDED {
148 BlockState(typename Traits::Type::Scope** scope_stack,
155 ~BlockState() { *scope_stack_ = outer_scope_; }
1114 // Used by FunctionState and BlockState.