(&self)
| 624 | } |
| 625 | |
| 626 | pub fn get_integeral_pointer_pos(&self) -> Vec<usize> { |
| 627 | let mut pos = Vec::new(); |
| 628 | for (i, param) in self.arg_types.iter().enumerate() { |
| 629 | if is_integeral_pointer(param) { |
| 630 | pos.push(i); |
| 631 | } |
| 632 | } |
| 633 | pos |
| 634 | } |
| 635 | |
| 636 | /// get the positiions of integer parameters of this API call. |
| 637 | pub fn get_floating_params(&self) -> Vec<usize> { |
no test coverage detected