The argument values the function is being invoked with.
(self)
| 8914 | return await _ctx.execute(str) |
| 8915 | |
| 8916 | async def input_args(self) -> list["FunctionCallArgValue"]: |
| 8917 | """The argument values the function is being invoked with.""" |
| 8918 | _args: list[Arg] = [] |
| 8919 | _ctx = self._select("inputArgs", _args) |
| 8920 | return await _ctx.execute_object_list(FunctionCallArgValue) |
| 8921 | |
| 8922 | async def name(self) -> str: |
| 8923 | """The name of the function being called. |
no test coverage detected