Lines Matching refs:inner_scope
4315 DeclarationScope* inner_scope = function_scope;
4328 inner_scope = NewVarblockScope();
4329 inner_scope->set_start_position(scanner()->location().beg_pos);
4335 BlockState block_state(&scope_, inner_scope);
4362 ParseAsyncFunctionBody(inner_scope, &inner_body);
4381 CheckConflictingVarDeclarations(inner_scope);
4384 DCHECK_EQ(inner_scope, function_scope);
4391 DCHECK_NOT_NULL(inner_scope);
4393 DCHECK_EQ(function_scope, inner_scope->outer_scope());
4394 impl()->SetLanguageMode(function_scope, inner_scope->language_mode());
4396 if (is_sloppy(inner_scope->language_mode())) {
4397 impl()->InsertSloppyBlockFunctionVarBindings(inner_scope);
4400 inner_scope->set_end_position(end_position());
4401 if (inner_scope->FinalizeBlockScope() != nullptr) {
4405 inner_block->set_scope(inner_scope);
4408 const AstRawString* conflict = inner_scope->FindVariableDeclaredIn(
4411 impl()->ReportVarRedeclarationIn(conflict, inner_scope);
5945 Scope* inner_scope = inner_block->scope();
5946 if (inner_scope != nullptr) {
5950 if (inner_scope->LookupLocal(name)) conflict = name;
5952 conflict = inner_scope->FindVariableDeclaredIn(
5956 impl()->ReportVarRedeclarationIn(conflict, inner_scope);
6255 Scope* inner_scope = NewScope(BLOCK_SCOPE);
6261 BlockState block_state(&scope_, inner_scope);
6274 loop, init, cond, next, body, inner_scope, *for_info);
6276 inner_scope = inner_scope->FinalizeBlockScope();
6277 DCHECK_NULL(inner_scope);
6278 USE(inner_scope);