get the fuzzable parameters of this API call. The parameter should be immutable array.
(&self)
| 593 | |
| 594 | /// get the fuzzable parameters of this API call. The parameter should be immutable array. |
| 595 | pub fn get_fuzzable_params(&self) -> Vec<usize> { |
| 596 | let mut params = Vec::new(); |
| 597 | for (i, param) in self.arg_types.iter().enumerate() { |
| 598 | if is_fuzzable_array_ty(param) { |
| 599 | params.push(i); |
| 600 | } |
| 601 | } |
| 602 | params |
| 603 | } |
| 604 | |
| 605 | pub fn get_array_params_pos(&self) -> Vec<usize> { |
| 606 | let mut params = Vec::new(); |
no test coverage detected