Lines Matching defs:funcCallArgs
135 ArenaVector<ir::Expression *> funcCallArgs)
163 std::move(funcCallArgs), paramInst, false, false);
192 ArenaVector<ir::Expression *> funcCallArgs)
203 body = CreateFunctionBody(method, ctx, std::move(funcCallArgs));
218 ArenaVector<ir::Expression *> funcCallArgs,
224 CreateFunctionExpression(method, ctx, std::move(funcDefinitionArgs), std::move(funcCallArgs));
271 ArenaVector<ir::Expression *> funcCallArgs(checker->Allocator()->Adapter()); // will have ir::Identifier
310 funcCallArgs.reserve(params.size());
313 params.begin(), params.end() - i, [&funcCallArgs, &funcDefinitionArgs, checker](ir::Expression *expr) {
320 funcCallArgs.push_back(funcArg);
333 funcCallArgs.insert(funcCallArgs.end(), defaultArgs.begin(), defaultArgs.end());
334 CreateOverloadFunction(method, std::move(funcCallArgs), std::move(funcDefinitionArgs), ctx);