HomeSort by relevance Sort by last modified time
    Searched defs:DeclarationScope (Results 1 - 2 of 2) sorted by null

  /external/v8/src/ast/
scopes.h 90 // JS environments are represented in the parser using Scope, DeclarationScope
91 // and ModuleScope. DeclarationScope is used for any scope that hosts 'var'
93 // scope. ModuleScope further specializes DeclarationScope.
112 DeclarationScope* AsDeclarationScope();
113 const DeclarationScope* AsDeclarationScope() const;
122 void Reparent(DeclarationScope* new_parent) const;
137 DeclarationScope* script_scope,
241 // TODO(verwaest): Move to DeclarationScope?
424 DeclarationScope* GetDeclarationScope();
427 // function, or eval scope. Same as DeclarationScope(), but skips declaratio
    [all...]
scopes.cc 172 DeclarationScope::DeclarationScope(Zone* zone,
183 DeclarationScope::DeclarationScope(Zone* zone, Scope* outer_scope,
193 bool DeclarationScope::IsDeclaredParameter(const AstRawString* name) {
200 ModuleScope::ModuleScope(DeclarationScope* script_scope,
202 : DeclarationScope(ast_value_factory->zone(), script_scope, MODULE_SCOPE,
212 : DeclarationScope(avfactory->zone(), MODULE_SCOPE, scope_info) {
276 DeclarationScope::DeclarationScope(Zone* zone, ScopeType scope_type
    [all...]

Completed in 150 milliseconds