(&mut self)
| 354 | } |
| 355 | |
| 356 | fn run_io_command(&mut self) -> std::result::Result<(), anyhow::Error> { |
| 357 | let (mut file_tree, main_path) = self.read_input()?; |
| 358 | |
| 359 | self.execute(&mut file_tree, &main_path) |
| 360 | .and_then(|buf| Ok(self.write_output(&buf)?)) |
| 361 | } |
| 362 | |
| 363 | fn execute<'a>(&self, sources: &'a mut SourceTree, main_path: &'a str) -> Result<Vec<u8>> { |
| 364 | let main_path = main_path |
no test coverage detected