HomeSort by relevance Sort by last modified time
    Searched defs:inner_scope (Results 1 - 7 of 7) sorted by null

  /external/v8/src/parsing/
preparser.cc 138 DeclarationScope* inner_scope = function_scope; local
142 inner_scope = NewVarblockScope();
143 inner_scope->set_start_position(scanner()->location().beg_pos);
147 BlockState block_state(&scope_, inner_scope);
155 if (is_sloppy(inner_scope->language_mode())) {
156 inner_scope->HoistSloppyBlockFunctions(nullptr);
159 SetLanguageMode(function_scope, inner_scope->language_mode());
160 inner_scope->set_end_position(scanner()->peek_location().end_pos);
161 inner_scope->FinalizeBlockScope();
parser-base.h 3962 DeclarationScope* inner_scope = function_scope; local
5614 Scope* inner_scope = scope(); local
    [all...]
parser.cc 3317 Scope* inner_scope = inner_block->scope(); local
    [all...]
  /external/v8/src/debug/
debug-scopes.cc 582 Handle<JSObject> inner_scope = local
588 frame_inspector_->MaterializeStackLocals(inner_scope, scope_info);
596 CopyContextLocalsToScopeObject(CurrentScopeInfo(), context, inner_scope); local
597 CopyContextExtensionToScopeObject(context, inner_scope,
600 return inner_scope;
856 for (Scope* inner_scope = scope->inner_scope(); inner_scope != nullptr;
857 inner_scope = inner_scope->sibling())
    [all...]
  /external/v8/src/ast/
scopes.h 351 // inner_scope() and sibling() together implement the inner scope list of a
354 Scope* inner_scope() const { return inner_scope_; } function in class:v8::internal::Scope
450 bool RemoveInnerScope(Scope* inner_scope) {
451 DCHECK_NOT_NULL(inner_scope);
452 if (inner_scope == inner_scope_) {
458 if (scope->sibling_ == inner_scope) {
602 void AddInnerScope(Scope* inner_scope) {
603 inner_scope->sibling_ = inner_scope_;
604 inner_scope_ = inner_scope;
605 inner_scope->outer_scope_ = this
    [all...]
scopes.cc 818 Scope* inner_scope = new_parent->sibling_; local
819 if (inner_scope != top_inner_scope_) {
820 for (; inner_scope->sibling() != top_inner_scope_;
821 inner_scope = inner_scope->sibling()) {
822 inner_scope->outer_scope_ = new_parent;
823 DCHECK_NE(inner_scope, new_parent);
825 inner_scope->outer_scope_ = new_parent;
828 inner_scope->sibling_ = nullptr;
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 4402 Scope* inner_scope = scope(); local
4435 Scope* inner_scope = scope(); local
    [all...]

Completed in 570 milliseconds