Lines Matching defs:scope

318   Scope* scope() const { return scope_; }
319 void set_scope(Scope* scope) { scope_ = scope; }
390 // For var declarations that appear in a block scope.
395 Scope* scope() const { return scope_; }
401 NestedVariableDeclaration(Scope* scope, int pos)
402 : VariableDeclaration(pos, true), scope_(scope) {}
404 // Nested scope from which the declaration originated.
660 Scope* scope() { return scope_; }
669 WithStatement(Scope* scope, Expression* expression, Statement* statement,
672 scope_(scope),
771 Scope* scope() { return scope_; }
840 TryCatchStatement(Block* try_block, Scope* scope, Block* catch_block,
843 scope_(scope),
895 Scope* scope() const { return var_->scope(); }
2176 DeclarationScope* scope() const { return scope_; }
2308 AstValueFactory* ast_value_factory, DeclarationScope* scope,
2324 scope_(scope),
2485 ClassScope* scope() const { return scope_; }
2520 ClassLiteral(ClassScope* scope, Expression* extends,
2532 scope_(scope),
2826 NestedVariableDeclaration* NewNestedVariableDeclaration(Scope* scope,
2828 return zone_->New<NestedVariableDeclaration>(scope, pos);
2910 WithStatement* NewWithStatement(Scope* scope,
2914 return zone_->New<WithStatement>(scope, expression, statement, pos);
2923 TryCatchStatement* NewTryCatchStatement(Block* try_block, Scope* scope,
2925 return zone_->New<TryCatchStatement>(try_block, scope, catch_block,
2930 Scope* scope,
2933 return zone_->New<TryCatchStatement>(try_block, scope, catch_block,
2938 Scope* scope,
2941 return zone_->New<TryCatchStatement>(try_block, scope, catch_block,
2946 Scope* scope,
2950 try_block, scope, catch_block, HandlerTable::UNCAUGHT_ASYNC_AWAIT, pos);
3223 const AstRawString* name, DeclarationScope* scope,
3233 ast_value_factory_, scope, body, expected_property_count,
3243 DeclarationScope* scope, const ScopedPtrList<Statement>& body,
3247 scope, body, expected_property_count, parameter_count, parameter_count,
3272 ClassScope* scope, Expression* extends, FunctionLiteral* constructor,
3281 scope, extends, constructor, public_members, private_members,