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

  /external/v8/src/debug/
debug-evaluate.cc 155 ScopeIterator::ScopeType scope_type = it.Type(); local
156 if (scope_type == ScopeIterator::ScopeTypeLocal) {
157 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
178 } else if (scope_type == ScopeIterator::ScopeTypeCatch ||
179 scope_type == ScopeIterator::ScopeTypeWith) {
186 } else if (scope_type == ScopeIterator::ScopeTypeBlock ||
187 scope_type == ScopeIterator::ScopeTypeEval) {
debug-scopes.cc 75 if (scope_info->scope_type() == FUNCTION_SCOPE) {
87 if (scope_info->scope_type() != FUNCTION_SCOPE) {
92 if (scope_info->scope_type() == SCRIPT_SCOPE) {
95 DCHECK(scope_info->scope_type() == EVAL_SCOPE);
178 ScopeType scope_type = Type(); local
179 if (scope_type == ScopeTypeGlobal) {
183 } else if (scope_type == ScopeTypeScript) {
189 DCHECK_EQ(nested_scope_chain_.last().scope_info->scope_type(),
217 switch (scope_info->scope_type()) {
691 DCHECK(scope_info->scope_type() == BLOCK_SCOPE |
    [all...]
  /external/v8/src/ast/
scopeinfo.cc 68 DCHECK(context_global_count == 0 || scope->scope_type() == SCRIPT_SCOPE);
85 int flags = ScopeTypeField::encode(scope->scope_type()) |
271 ScopeType ScopeInfo::scope_type() { function in class:v8::internal::ScopeInfo
315 scope_type() == WITH_SCOPE ||
316 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() &&
318 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
319 scope_type() == MODULE_SCOPE;
scopes.h 91 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
377 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::Scope
  /external/v8/test/cctest/
test-parsing.cc 1186 i::ScopeType scope_type; member in struct:SourceData
    [all...]

Completed in 72 milliseconds