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

  /external/v8/src/debug/
debug-scopes.cc 106 DCHECK(scope_info->scope_type() == SCRIPT_SCOPE);
226 SCRIPT_SCOPE);
260 case SCRIPT_SCOPE:
480 Handle<JSObject> script_scope = local
488 CopyContextLocalsToScopeObject(scope_info, context, script_scope);
490 return script_scope;
  /external/v8/src/parsing/
parse-info.h 123 DeclarationScope* script_scope() const { return script_scope_; } function in class:v8::internal::ParseInfo
124 void set_script_scope(DeclarationScope* script_scope) {
125 script_scope_ = script_scope;
parser.cc 573 // TODO(wingo): Add an outer SCRIPT_SCOPE corresponding to the native
575 DeclarationScope* script_scope = NewScriptScope(); local
576 info->set_script_scope(script_scope);
577 Scope* scope = script_scope;
581 info->isolate(), zone(), *outer_scope_info, script_scope,
676 DCHECK_EQ(outer, info->script_scope());
677 outer = NewModuleScope(info->script_scope());
    [all...]
  /external/v8/src/ast/
scopes.cc 136 scope_type_(SCRIPT_SCOPE) {
145 DCHECK_NE(SCRIPT_SCOPE, scope_type);
166 DCHECK_EQ(scope_type_, SCRIPT_SCOPE);
181 DCHECK_NE(scope_type, SCRIPT_SCOPE);
186 ModuleScope::ModuleScope(DeclarationScope* script_scope,
188 : DeclarationScope(ast_value_factory->zone(), script_scope, MODULE_SCOPE,
265 DCHECK_NE(scope_type, SCRIPT_SCOPE);
374 DeclarationScope* script_scope,
391 } else if (scope_info->scope_type() == SCRIPT_SCOPE) {
396 script_scope->SetScriptScopeInfo(handle(scope_info))
594 DeclarationScope* script_scope = new (info->zone()) local
    [all...]

Completed in 80 milliseconds