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

/external/chromium_org/v8/src/
H A Dscopes.h264 bool is_eval_scope() const { return scope_type_ == EVAL_SCOPE; }
265 bool is_function_scope() const { return scope_type_ == FUNCTION_SCOPE; }
266 bool is_module_scope() const { return scope_type_ == MODULE_SCOPE; }
267 bool is_global_scope() const { return scope_type_ == GLOBAL_SCOPE; }
268 bool is_catch_scope() const { return scope_type_ == CATCH_SCOPE; }
269 bool is_block_scope() const { return scope_type_ == BLOCK_SCOPE; }
270 bool is_with_scope() const { return scope_type_ == WITH_SCOPE; }
299 ScopeType scope_type() const { return scope_type_; }
427 ScopeType scope_type_; member in class:v8::internal::Scope
H A Dpreparser.h943 : scope_type_(scope_type) {
947 ScopeType type() { return scope_type_; }
966 ScopeType scope_type_; member in class:v8::internal::PreParserScope

Completed in 152 milliseconds