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

  /external/v8/src/debug/
debug-evaluate.cc 151 ScopeIterator::ScopeType scope_type = it.Type(); local
152 if (scope_type == ScopeIterator::ScopeTypeLocal) {
153 DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
174 } else if (scope_type == ScopeIterator::ScopeTypeCatch ||
175 scope_type == ScopeIterator::ScopeTypeWith) {
182 } else if (scope_type == ScopeIterator::ScopeTypeBlock ||
183 scope_type == ScopeIterator::ScopeTypeEval) {
debug-scopes.cc 80 if (scope_info->scope_type() == FUNCTION_SCOPE) {
91 if (scope_info->scope_type() != FUNCTION_SCOPE) {
95 if (scope_info->scope_type() == EVAL_SCOPE) {
103 } else if (scope_info->scope_type() == MODULE_SCOPE) {
106 DCHECK(scope_info->scope_type() == SCRIPT_SCOPE);
214 ScopeType scope_type = Type(); local
215 if (scope_type == ScopeTypeGlobal) {
219 } else if (scope_type == ScopeTypeScript) {
225 DCHECK_EQ(nested_scope_chain_.last().scope_info->scope_type(),
253 switch (scope_info->scope_type()) {
    [all...]
  /external/v8/src/compiler/
js-operator.h 310 CreateFunctionContextParameters(int slot_count, ScopeType scope_type);
313 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::compiler::final
704 const Operator* CreateFunctionContext(int slot_count, ScopeType scope_type);
js-create-lowering.cc 844 ScopeType scope_type = parameters.scope_type(); local
    [all...]
js-generic-lowering.cc 402 ScopeType scope_type = parameters.scope_type(); local
408 CodeFactory::FastNewFunctionContext(isolate(), scope_type);
412 node->InsertInput(zone(), 1, jsgraph()->SmiConstant(scope_type));
  /external/v8/src/ast/
scopes.h 94 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type);
346 ScopeType scope_type() const { return scope_type_; } function in class:v8::internal::Scope
616 DeclarationScope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
618 DeclarationScope(Zone* zone, ScopeType scope_type,
    [all...]
  /external/v8/src/objects/
scope-info.cc 162 ScopeTypeField::encode(scope->scope_type()) |
403 ScopeType ScopeInfo::scope_type() { function in class:v8::internal::ScopeInfo
437 scope_type() == WITH_SCOPE ||
438 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() &&
440 (scope_type() == FUNCTION_SCOPE && CallsSloppyEval()) ||
441 (scope_type() == FUNCTION_SCOPE && IsAsmModule()) ||
442 scope_type() == MODULE_SCOPE;
497 DCHECK_EQ(scope_type(), WITH_SCOPE);
525 DCHECK(scope_type() == MODULE_SCOPE);
617 DCHECK_EQ(scope_type(), MODULE_SCOPE)
    [all...]
  /external/python/cpython3/Python/
compile.c 422 either scope_type or flag is set, insert it into the new dict. The
428 dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
461 if (scope == scope_type || vi & flag) {
533 int scope_type, void *key, int lineno)
545 u->u_scope_type = scope_type;
1821 int scope_type; local
    [all...]

Completed in 253 milliseconds