(&self)
| 253 | } |
| 254 | |
| 255 | pub fn serialize_fuzzer_stmts(&self) -> String { |
| 256 | let mut stmts = String::new(); |
| 257 | stmts.push_str("\n\t//fuzzer vars shim {\n\t\t"); |
| 258 | let vars = self.fuzz_stmts.join("\n\t\t"); |
| 259 | stmts.push_str(&vars); |
| 260 | stmts.push_str("\n\t//fuzzer shim end}\n\n"); |
| 261 | stmts |
| 262 | } |
| 263 | } |
no outgoing calls
no test coverage detected