Lines Matching refs:this_var
2576 VariableProxy* this_var() const { return this_var_; } in this_var() function
2582 SuperPropertyReference(VariableProxy* this_var, Expression* home_object, in SuperPropertyReference() argument
2585 this_var_(this_var), in SuperPropertyReference()
2587 DCHECK(this_var->is_this()); in SuperPropertyReference()
2598 VariableProxy* this_var() const { return this_var_; } in this_var() function
2605 SuperCallReference(VariableProxy* this_var, VariableProxy* new_target_var, in SuperCallReference() argument
2608 this_var_(this_var), in SuperCallReference()
2611 DCHECK(this_var->is_this()); in SuperCallReference()
3282 SuperPropertyReference* NewSuperPropertyReference(VariableProxy* this_var, in NewSuperPropertyReference() argument
3285 return new (zone_) SuperPropertyReference(this_var, home_object, pos); in NewSuperPropertyReference()
3288 SuperCallReference* NewSuperCallReference(VariableProxy* this_var, in NewSuperCallReference() argument
3293 SuperCallReference(this_var, new_target_var, this_function_var, pos); in NewSuperCallReference()