(&self)
| 603 | } |
| 604 | |
| 605 | pub fn get_array_params_pos(&self) -> Vec<usize> { |
| 606 | let mut params = Vec::new(); |
| 607 | for (i, param) in self.arg_types.iter().enumerate() { |
| 608 | if is_array_ty(param) { |
| 609 | params.push(i); |
| 610 | } |
| 611 | } |
| 612 | params |
| 613 | } |
| 614 | |
| 615 | /// get the positiions of integer parameters of this API call. |
| 616 | pub fn get_integer_params_pos(&self) -> Vec<usize> { |
no test coverage detected