Searched defs:is_function_scope (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/interpreter/
H A Dbytecode-flags.cc42 uint8_t CreateClosureFlags::Encode(bool pretenure, bool is_function_scope) { argument
45 pretenure == NOT_TENURED && is_function_scope) {
/external/v8/src/ast/
H A Dscopes.h316 bool is_function_scope() const { return scope_type_ == FUNCTION_SCOPE; } function in class:v8::internal::Scope
633 return is_function_scope() && IsArrowFunction(function_kind_);
720 return (is_function_scope() && !is_arrow_scope()) || is_module_scope();
729 DCHECK(is_function_scope());
734 DCHECK(is_function_scope() || is_module_scope());
739 DCHECK(is_function_scope());
747 DCHECK(is_function_scope() || is_module_scope());
773 DCHECK(is_function_scope());
788 (is_function_scope() && (IsClassConstructor(function_kind()) ||

Completed in 220 milliseconds