Home | History | Annotate | Download | only in parsing

Lines Matching defs:inner_scope

3301     Scope* inner_scope, VariableMode mode, ZoneList<const AstRawString*>* names,
3399 BlockState block_state(&scope_, inner_scope);
3540 inner_scope->set_end_position(scanner()->location().end_pos);
3541 inner_block->set_scope(inner_scope);
3843 Scope* inner_scope = scope_;
3845 inner_scope = NewScope(for_scope, BLOCK_SCOPE);
3846 inner_scope->set_start_position(scanner()->location().beg_pos);
3849 BlockState block_state(&scope_, inner_scope);
3869 inner_scope, parsing_result.descriptor.mode, &lexical_bindings, loop,
4720 Scope* inner_scope = scope_;
4723 inner_scope = NewScope(scope_, BLOCK_SCOPE);
4724 inner_scope->set_is_declaration_scope();
4725 inner_scope->set_start_position(scanner()->location().beg_pos);
4727 inner_block->set_scope(inner_scope);
4732 BlockState block_state(&scope_, inner_scope);
4791 DesugarAsyncFunctionBody(function_name, inner_scope, body, nullptr, kind,
4810 DCHECK_NOT_NULL(inner_scope);
4812 SetLanguageMode(scope_, inner_scope->language_mode());
4821 inner_scope->set_end_position(scanner()->location().end_pos);
4822 inner_scope = inner_scope->FinalizeBlockScope();
4823 if (inner_scope != nullptr) {
4824 CheckConflictingVarDeclarations(inner_scope, CHECK_OK);
5095 Scope* inner_scope = inner_block->scope();
5096 DCHECK(inner_scope->is_declaration_scope());
5097 Scope* function_scope = inner_scope->outer_scope();
5099 ZoneList<Declaration*>* decls = inner_scope->declarations();
5106 VariableProxy* to = inner_scope->NewUnresolved(factory(), name);