(sig_set_abi_args: &'a mut Vec<ABIArg>)
| 316 | |
| 317 | impl<'a> ArgsAccumulator<'a> { |
| 318 | fn new(sig_set_abi_args: &'a mut Vec<ABIArg>) -> Self { |
| 319 | let start = sig_set_abi_args.len(); |
| 320 | ArgsAccumulator { |
| 321 | sig_set_abi_args, |
| 322 | start, |
| 323 | non_formal_flag: false, |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | #[inline] |
| 328 | pub fn push(&mut self, arg: ABIArg) { |
nothing calls this directly
no test coverage detected