Lines Matching full:scope_
110 Scope* top_scope = NewScope(scope_, SCRIPT_SCOPE);
112 FunctionState top_state(&function_state_, &scope_, top_scope, kNormalFunction,
114 scope_->SetLanguageMode(language_mode);
115 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind);
118 FunctionState function_state(&function_state_, &scope_, function_scope, kind,
132 if (is_strict(scope_->language_mode())) {
137 if (is_strong(scope_->language_mode()) && IsSubclassConstructor(kind)) {
235 if (is_strong(language_mode()) && scope_->is_function_scope() &&
259 scope_->SetLanguageMode(
260 static_cast<LanguageMode>(scope_->language_mode() | STRICT));
262 scope_->SetLanguageMode(static_cast<LanguageMode>(
263 scope_->language_mode() | STRONG));
277 !scope_->HasSimpleParameters()) {
833 Scope* with_scope = NewScope(scope_, WITH_SCOPE);
834 BlockState block_state(&scope_, with_scope);
1063 Scope* with_scope = NewScope(scope_, WITH_SCOPE);
1064 BlockState block_state(&scope_, with_scope);
1108 bool outer_is_script_scope = scope_->is_script_scope();
1109 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind);
1112 FunctionState function_state(&function_state_, &scope_, function_scope, kind,
1187 scope_->uses_super_property(), scope_->calls_eval());
1213 Scope* scope = NewScope(scope_, BLOCK_SCOPE);
1214 BlockState block_state(&scope_, scope);
1215 scope_->SetLanguageMode(
1218 // scope_->SetScopeName(name);
1277 Scope* block_scope = NewScope(scope_, BLOCK_SCOPE);
1279 BlockState block_state(&scope_, block_scope);