Compile an HLL source file with the stdlib and return assembled output.
(path: &str, mode: TargetMode)
| 367 | } |
| 368 | } |
| 369 | |
| 370 | // --- Compilation helpers --- |
| 371 | |
| 372 | fn run_cli_config(input: &str, mode: TargetMode, max_steps: u64) -> Result<ExitCode, CliError> { |
| 373 | let (fs, config) = config_for_cli_input(input, mode)?; |
| 374 | let engine = SessionEngine::new(&fs); |
| 375 | match config.kind { |
no test coverage detected