| 36 | use std::process::ExitCode; |
| 37 | use std::time::Duration; |
| 38 | use virtual_machine::virtual_machine::{StepOutcome, VirtualMachine}; |
| 39 | |
| 40 | // --- Error type --- |
| 41 | |
| 42 | #[derive(Debug)] |
| 43 | enum CliError { |
| 44 | Usage(String), |
| 45 | Io(std::io::Error), |
| 46 | Compile(String), |
| 47 | Assemble(String), |
nothing calls this directly
no outgoing calls
no test coverage detected