Lines Matching refs:body_scope
3643 Scope* body_scope = NewScope(scope_, BLOCK_SCOPE); in ParseForStatement() local
3644 body_scope->set_start_position(scanner()->location().beg_pos); in ParseForStatement()
3645 scope_ = body_scope; in ParseForStatement()
3674 body_scope->set_end_position(scanner()->location().end_pos); in ParseForStatement()
3675 body_scope = body_scope->FinalizeBlockScope(); in ParseForStatement()
3676 if (body_scope != nullptr) { in ParseForStatement()
3677 body_block->set_scope(body_scope); in ParseForStatement()
3765 Scope* body_scope = NewScope(for_scope, BLOCK_SCOPE); in ParseForStatement() local
3766 scope_ = body_scope; in ParseForStatement()
3774 body_scope->set_end_position(scanner()->location().end_pos); in ParseForStatement()
3775 body_scope = body_scope->FinalizeBlockScope(); in ParseForStatement()
3776 if (body_scope != nullptr) { in ParseForStatement()
3777 block->set_scope(body_scope); in ParseForStatement()