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

Method get_function_cov

src/feedback/clang_coverage.rs:195–200  ·  view source on GitHub ↗
(&self, func: &str)

Source from the content-addressed store, hash-verified

193 }
194
195 pub fn get_function_cov(&self, func: &str) -> Option<&CovFunction> {
196 self.data[0]
197 .functions
198 .iter()
199 .find(|&func_cov| func_cov.get_name() == func)
200 }
201
202 pub fn get_function_cov_mut(&mut self, func: &str) -> Option<&mut CovFunction> {
203 self.data[0]

Callers 1

test_parse_code_coverageFunction · 0.80

Calls 1

get_nameMethod · 0.45

Tested by 1

test_parse_code_coverageFunction · 0.64