OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scope_type_
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/ast/
scopes.h
329
bool is_eval_scope() const { return
scope_type_
== EVAL_SCOPE; }
330
bool is_function_scope() const { return
scope_type_
== FUNCTION_SCOPE; }
331
bool is_module_scope() const { return
scope_type_
== MODULE_SCOPE; }
332
bool is_script_scope() const { return
scope_type_
== SCRIPT_SCOPE; }
333
bool is_catch_scope() const { return
scope_type_
== CATCH_SCOPE; }
334
bool is_block_scope() const { return
scope_type_
== BLOCK_SCOPE; }
335
bool is_with_scope() const { return
scope_type_
== WITH_SCOPE; }
390
ScopeType scope_type() const { return
scope_type_
; }
611
ScopeType
scope_type_
;
member in class:v8::internal::Scope
[
all
...]
scopes.cc
173
scope_type_
= scope_type;
[
all
...]
Completed in 64 milliseconds