Lines Matching refs:VariableProxy
71 V(VariableProxy) \
505 VariableProxy* result() { return result_; } in result()
506 void set_result(VariableProxy* v) { result_ = v; } in set_result()
511 DoExpression(Zone* zone, Block* block, VariableProxy* result, int pos) in DoExpression()
522 VariableProxy* result_;
528 VariableProxy* proxy() const { return proxy_; } in proxy()
535 Declaration(Zone* zone, VariableProxy* proxy, VariableMode mode, Scope* scope, in Declaration()
543 VariableProxy* proxy_;
567 VariableDeclaration(Zone* zone, VariableProxy* proxy, VariableMode mode,
592 VariableProxy* proxy, in FunctionDeclaration()
623 ImportDeclaration(Zone* zone, VariableProxy* proxy, in ImportDeclaration()
645 ExportDeclaration(Zone* zone, VariableProxy* proxy, Scope* scope, int pos) in ExportDeclaration()
1716 class VariableProxy final : public Expression {
1718 DECLARE_NODE_TYPE(VariableProxy) in DECLARE_NODE_TYPE() argument
1776 VariableProxy(Zone* zone, Variable* var, int start_position,
1779 VariableProxy(Zone* zone, const AstRawString* name,
1944 VariableProxy* proxy = expression_->AsVariableProxy(); in global_call()
2807 VariableProxy* class_variable_proxy() const { return class_variable_proxy_; } in class_variable_proxy()
2842 VariableProxy* class_variable_proxy, Expression* extends, in ClassLiteral()
2861 VariableProxy* class_variable_proxy_;
2901 VariableProxy* this_var() const { return this_var_; } in DECLARE_NODE_TYPE()
2902 void set_this_var(VariableProxy* v) { this_var_ = v; } in set_this_var()
2907 SuperPropertyReference(Zone* zone, VariableProxy* this_var, in SuperPropertyReference()
2915 VariableProxy* this_var_;
2924 VariableProxy* this_var() const { return this_var_; } in DECLARE_NODE_TYPE()
2925 void set_this_var(VariableProxy* v) { this_var_ = v; } in set_this_var()
2926 VariableProxy* new_target_var() const { return new_target_var_; } in new_target_var()
2927 void set_new_target_var(VariableProxy* v) { new_target_var_ = v; } in set_new_target_var()
2928 VariableProxy* this_function_var() const { return this_function_var_; } in this_function_var()
2929 void set_this_function_var(VariableProxy* v) { this_function_var_ = v; } in set_this_function_var()
2932 SuperCallReference(Zone* zone, VariableProxy* this_var, in SuperCallReference()
2933 VariableProxy* new_target_var, in SuperCallReference()
2934 VariableProxy* this_function_var, int pos) in SuperCallReference()
2945 VariableProxy* this_var_;
2946 VariableProxy* new_target_var_;
2947 VariableProxy* this_function_var_;
3099 VariableProxy* proxy, VariableMode mode, Scope* scope, int pos,
3106 FunctionDeclaration* NewFunctionDeclaration(VariableProxy* proxy, in NewFunctionDeclaration()
3115 ImportDeclaration* NewImportDeclaration(VariableProxy* proxy, in NewImportDeclaration()
3123 ExportDeclaration* NewExportDeclaration(VariableProxy* proxy, in NewExportDeclaration()
3314 VariableProxy* NewVariableProxy(Variable* var,
3318 VariableProxy(parser_zone_, var, start_position, end_position);
3321 VariableProxy* NewVariableProxy(const AstRawString* name,
3326 return new (parser_zone_) VariableProxy(parser_zone_, name, variable_kind,
3456 VariableProxy* proxy, Expression* extends, in NewClassLiteral()
3473 VariableProxy* result = NewVariableProxy(result_var, pos); in NewDoExpression()
3481 SuperPropertyReference* NewSuperPropertyReference(VariableProxy* this_var, in NewSuperPropertyReference()
3488 SuperCallReference* NewSuperCallReference(VariableProxy* this_var, in NewSuperCallReference()
3489 VariableProxy* new_target_var, in NewSuperCallReference()
3490 VariableProxy* this_function_var, in NewSuperCallReference()