OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_eval_scope
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/
scopes.h
285
bool
is_eval_scope
() const { return scope_type_ == EVAL_SCOPE; }
function in class:v8::internal::Scope
293
return
is_eval_scope
() || is_function_scope() ||
303
return
is_eval_scope
() && !is_classic_mode();
/external/v8/src/
scopes.h
268
bool
is_eval_scope
() const { return type_ == EVAL_SCOPE; }
function in class:v8::internal::Scope
276
return
is_eval_scope
() || is_function_scope() || is_global_scope();
285
return
is_eval_scope
() && !is_classic_mode();
Completed in 29 milliseconds