Searched refs:nesting_stack_ (Results 1 – 4 of 4) sorted by relevance
33 #define DCHECK_CURRENT_CONTAINER_IS(x) DCHECK_EQ(x, nesting_stack_.back())34 #define DCHECK_CONTAINER_STACK_DEPTH_EQ(x) DCHECK_EQ(x, nesting_stack_.size())35 #define DEBUG_PUSH_CONTAINER(x) nesting_stack_.push_back(x)36 #define DEBUG_POP_CONTAINER() nesting_stack_.pop_back()
84 std::vector<bool> nesting_stack_; variable
42 nesting_stack_(NULL), in FullCodeGenerator()109 previous_ = codegen->nesting_stack_; in NestedStatement()110 codegen->nesting_stack_ = this; in NestedStatement()114 DCHECK_EQ(this, codegen_->nesting_stack_); in ~NestedStatement()115 codegen_->nesting_stack_ = previous_; in ~NestedStatement()945 NestedStatement* nesting_stack_; variable
850 NestedStatement* current = nesting_stack_; in VisitContinueStatement()878 NestedStatement* current = nesting_stack_; in VisitBreakStatement()904 NestedStatement* current = nesting_stack_; in EmitUnwindBeforeReturn()1396 for (NestedStatement* current = nesting_stack_; current != NULL; /*nop*/) { in EnterTryBlock()