Helper for parsing run commands.
(text: &str, sig: &Signature)
| 3689 | |
| 3690 | // Helper for parsing run commands. |
| 3691 | fn parse(text: &str, sig: &Signature) -> ParseResult<RunCommand> { |
| 3692 | Parser::new(text).parse_run_command(sig) |
| 3693 | } |
| 3694 | |
| 3695 | // Check that we can parse and display the same set of run commands. |
| 3696 | fn assert_roundtrip(text: &str, sig: &Signature) { |
nothing calls this directly
no test coverage detected