| 44 | pub trait InstructionLineHandler { |
| 45 | fn handle_line(&self, line: &str) -> Result<(), ProcessorError>; |
| 46 | } |
| 47 | |
| 48 | pub struct TranscientLineHandler; |
| 49 | |
| 50 | impl InstructionLineHandler for TranscientLineHandler { |
| 51 | fn handle_line(&self, _line: &str) -> Result<(), ProcessorError> { |
nothing calls this directly
no outgoing calls
no test coverage detected