Lines Matching defs:arguments
1917 ZoneList<Expression*>* arguments() const { return arguments_; }
2006 Call(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
2010 arguments_(arguments),
2038 ZoneList<Expression*>* arguments() const { return arguments_; }
2074 CallNew(Zone* zone, Expression* expression, ZoneList<Expression*>* arguments,
2078 arguments_(arguments),
2097 // with a set of arguments. This is used from the builtins that are
2103 ZoneList<Expression*>* arguments() const { return arguments_; }
2124 ZoneList<Expression*>* arguments, int pos)
2125 : Expression(zone, pos), function_(function), arguments_(arguments) {}
2127 arguments,
2132 arguments_(arguments) {}
2952 // arguments and is not actually a valid expression.
3335 ZoneList<Expression*>* arguments,
3337 return new (local_zone_) Call(local_zone_, expression, arguments, pos);
3341 ZoneList<Expression*>* arguments,
3343 return new (local_zone_) CallNew(local_zone_, expression, arguments, pos);
3347 ZoneList<Expression*>* arguments, int pos) {
3349 CallRuntime(local_zone_, Runtime::FunctionForId(id), arguments, pos);
3353 ZoneList<Expression*>* arguments, int pos) {
3354 return new (local_zone_) CallRuntime(local_zone_, function, arguments, pos);
3358 ZoneList<Expression*>* arguments, int pos) {
3360 CallRuntime(local_zone_, context_index, arguments, pos);