(output: Option<&str>, content: &str)
| 515 | fn print_build_summary(outcome: &BuildOutcome) { |
| 516 | eprintln!( |
| 517 | "fsc: built `{}` for {:?} ({} units)", |
| 518 | outcome.manifest_name, |
| 519 | outcome.target, |
| 520 | outcome.artifacts.units.len() |
| 521 | ); |
| 522 | if let Some(dir) = &outcome.artifact_dir { |
| 523 | eprintln!("fsc: wrote artifacts under `{}`", dir.display()); |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | fn assemble_from_s_file(path: &str, mode: TargetMode) -> Result<AssembledOutput, CliError> { |
no outgoing calls
no test coverage detected