Lines Matching defs:Variable
21 class Variable final : public ZoneObject {
23 Variable(Scope* scope, const AstRawString* name, VariableMode mode,
49 explicit Variable(Variable* other);
134 // Returns the InitializationFlag this Variable was created with.
162 // Otherwise, defer to the flag set when this Variable was constructed.
167 // reference this Variable in such a way that a hole check will
190 Variable* local_if_not_shadowed() const {
201 void set_local_if_not_shadowed(Variable* local) {
249 using List = base::ThreadedList<Variable>;
259 Variable* local_if_not_shadowed_;
260 Variable* next_;
280 Variable** next() { return &next_; }
282 friend base::ThreadedListTraits<Variable>;