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 164 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
261 if (element.scope_info->scope_type() == FUNCTION_SCOPE) {
debug-scopes.cc 79 if (scope_info->scope_type() == FUNCTION_SCOPE) {
89 if (scope_info->scope_type() != FUNCTION_SCOPE) {
187 case FUNCTION_SCOPE:
  /external/v8/src/ast/
scopes.h 330 bool is_function_scope() const { return scope_type_ == FUNCTION_SCOPE; }
    [all...]
scopes.cc 250 current_scope = new (zone) Scope(zone, current_scope, FUNCTION_SCOPE,
899 case FUNCTION_SCOPE:
    [all...]
scopeinfo.cc 349 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
  /external/v8/src/
globals.h 768 FUNCTION_SCOPE, // The top-level scope for a function.
  /external/v8/src/parsing/
preparser.cc 115 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind); local
116 if (!has_simple_parameters) function_scope->SetHasNonSimpleParameters();
118 FunctionState function_state(&function_state_, &scope_, function_scope, kind,
1109 Scope* function_scope = NewScope(scope_, FUNCTION_SCOPE, kind); local
    [all...]
parser.cc 193 Scope* function_scope = NewScope(scope, FUNCTION_SCOPE, kind); local
194 SetLanguageMode(function_scope,
197 function_scope->set_start_position(pos);
198 function_scope->set_end_position(pos);
203 FunctionState function_state(&function_state_, &scope_, function_scope,
239 name, function_scope, body, materialized_literal_count,
4924 Scope* function_scope = inner_scope->outer_scope(); local
    [all...]
parser-base.h 333 // Must always pass the function kind for FUNCTION_SCOPE.
334 DCHECK(scope_type != FUNCTION_SCOPE);
    [all...]

Completed in 205 milliseconds