Function
transform
(
project: String,
program_path: &Path,
use_cons: bool,
corpora: Option<PathBuf>,
)
Source from the content-addressed store, hash-verified
| 110 | } |
| 111 | |
| 112 | pub fn transform( |
| 113 | project: String, |
| 114 | program_path: &Path, |
| 115 | use_cons: bool, |
| 116 | corpora: Option<PathBuf>, |
| 117 | ) -> Result<()> { |
| 118 | let deopt = Deopt::new(project)?; |
| 119 | prompt_fuzz::program::transform::transform(&deopt, program_path, use_cons, corpora)?; |
| 120 | Ok(()) |
| 121 | } |
| 122 | |
| 123 | pub fn check(project: String, program: &Path) -> Result<Option<ProgramError>> { |
| 124 | let deopt = Deopt::new(project)?; |
Tested by
no test coverage detected