Lines Matching defs:args
68 ScopedPtrList<Expression> args(pointer_buffer());
72 args.Add(spread_args);
75 call = factory()->NewCall(super_call_ref, args, pos, has_spread);
289 ScopedPtrList<Expression> args(pointer_buffer());
290 args.Add(factory()->NewSmiLiteral(static_cast<int>(message), pos));
291 args.Add(factory()->NewStringLiteral(arg, pos));
292 CallRuntime* call_constructor = factory()->NewCallRuntime(id, args, pos);
326 ScopedPtrList<Expression> args(pointer_buffer());
327 return factory()->NewCallRuntime(Runtime::kInlineGetImportMetaObject, args,
360 const ScopedPtrList<Expression>& args,
379 return NewV8RuntimeFunctionForFuzzing(function, args, pos);
388 if (function->nargs != -1 && function->nargs != args.length()) {
393 return factory()->NewCallRuntime(function, args, pos);
405 return factory()->NewCallRuntime(context_index, args, pos);
410 const Runtime::Function* function, const ScopedPtrList<Expression>& args,
419 function->nargs > args.length()) {
425 return factory()->NewCallRuntime(function, args, pos);
431 permissive_args.Add(args.at(i));
2995 ScopedPtrList<Expression> args(pointer_buffer());
2996 args.Add(factory()->NewVariableProxy(
2998 args.Add(factory()->NewVariableProxy(catch_scope->catch_variable()));
3000 Runtime::kInlineAsyncFunctionReject, args, kNoSourcePosition);
3557 const ScopedPtrList<Expression>& args) {
3558 Expression* expr = args.at(0);
3559 if (args.length() == 1) return expr;
3560 if (args.length() == 2) {
3561 return factory()->NewBinaryOperation(Token::COMMA, expr, args.at(1),
3562 args.at(1)->position());
3565 factory()->NewNaryOperation(Token::COMMA, expr, args.length() - 1);
3566 for (int i = 1; i < args.length(); i++) {
3567 result->AddSubsequent(args.at(i), args.at(i)->position());