Home
last modified time | relevance | path

Searched refs:top_scope_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dparser.cc530 previous_scope_(parser->top_scope_), in LexicalScope()
533 parser->top_scope_ = scope; in LexicalScope()
541 parser_->top_scope_->Leave(); in ~LexicalScope()
542 parser_->top_scope_ = previous_scope_; in ~LexicalScope()
580 top_scope_(NULL), in Parser()
639 { Scope* scope = NewScope(top_scope_, type, inside_with()); in DoParseProgram()
642 top_scope_->EnableStrictMode(); in DoParseProgram()
648 if (ok && top_scope_->is_strict_mode()) { in DoParseProgram()
654 top_scope_, in DoParseProgram()
723 Scope* scope = NewScope(top_scope_, Scope::GLOBAL_SCOPE, inside_with()); in ParseLazy()
[all …]
Dparser.h709 Scope* top_scope_; variable