Home | History | Annotate | Download | only in ast

Lines Matching refs:this_var

2878   VariableProxy* this_var() const { return this_var_; }
2886 SuperPropertyReference(VariableProxy* this_var, Expression* home_object,
2889 this_var_(this_var),
2891 DCHECK(this_var->is_this());
2902 VariableProxy* this_var() const { return this_var_; }
2912 SuperCallReference(VariableProxy* this_var, VariableProxy* new_target_var,
2915 this_var_(this_var),
2918 DCHECK(this_var->is_this());
3558 SuperPropertyReference* NewSuperPropertyReference(VariableProxy* this_var,
3561 return new (zone_) SuperPropertyReference(this_var, home_object, pos);
3564 SuperCallReference* NewSuperCallReference(VariableProxy* this_var,
3569 SuperCallReference(this_var, new_target_var, this_function_var, pos);