HomeSort by relevance Sort by last modified time
    Searched refs:FUNCTION_SCOPE (Results 1 - 10 of 10) sorted by null

  /external/v8/test/cctest/
test-parsing.cc     [all...]
  /external/v8/src/debug/
debug-evaluate.cc 157 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
debug-scopes.cc 75 if (scope_info->scope_type() == FUNCTION_SCOPE) {
87 if (scope_info->scope_type() != FUNCTION_SCOPE) {
218 case FUNCTION_SCOPE:
  /external/v8/src/ast/
scopes.cc 237 current_scope = new (zone) Scope(zone, current_scope, FUNCTION_SCOPE,
830 case FUNCTION_SCOPE:
    [all...]
scopes.h 323 bool is_function_scope() const { return scope_type_ == FUNCTION_SCOPE; }
scopeinfo.cc 318 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
  /external/v8/src/
globals.h 842 FUNCTION_SCOPE, // The top-level scope for a function.
    [all...]
  /external/v8/src/parsing/
preparser.cc 117 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind); local
118 if (!has_simple_parameters) function_scope->SetHasNonSimpleParameters();
120 FunctionState function_state(&function_state_, &scope_, function_scope, kind,
1099 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind); local
    [all...]
parser-base.h 585 // Must always pass the function kind for FUNCTION_SCOPE.
586 DCHECK(scope_type != FUNCTION_SCOPE);
    [all...]
parser.cc 192 Scope* function_scope = NewScope(scope, FUNCTION_SCOPE, kind); local
193 SetLanguageMode(function_scope,
196 function_scope->set_start_position(pos);
197 function_scope->set_end_position(pos);
202 FunctionState function_state(&function_state_, &scope_, function_scope,
215 function_scope->DeclareParameter(constructor_args_name, TEMPORARY,
249 name, function_scope, body, materialized_literal_count,
5097 Scope* function_scope = inner_scope->outer_scope(); local
    [all...]

Completed in 752 milliseconds