MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / is_fuzzable

Method is_fuzzable

src/program/gadget.rs:585–592  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

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> {

Callers

nothing calls this directly

Calls 1

is_fuzzable_array_tyFunction · 0.85

Tested by

no test coverage detected