(&self)
| 583 | } |
| 584 | |
| 585 | pub fn is_fuzzable(&self) -> bool { |
| 586 | for param in &self.arg_types { |
| 587 | if is_fuzzable_array_ty(param) { |
| 588 | return true; |
| 589 | } |
| 590 | } |
| 591 | false |
| 592 | } |
| 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> { |
nothing calls this directly
no test coverage detected