Searched refs:RunCommand (Results 1 – 7 of 7) sorted by relevance
| /wasmtime-44.0.1/cranelift/reader/src/ |
| H A D | run_command.rs | 16 pub enum RunCommand { enum 23 impl RunCommand { implementation 36 RunCommand::Print(invoke) => { in run() 40 RunCommand::Run(invoke, compare, expected) => { in run() 70 impl Display for RunCommand { implementation 73 RunCommand::Print(invocation) => write!(f, "print: {invocation}"), in fmt() 74 RunCommand::Run(invocation, comparison, expected) => { in fmt()
|
| H A D | lib.rs | 11 pub use crate::run_command::{Comparison, Invocation, RunCommand};
|
| H A D | parser.rs | 6 use crate::run_command::{Comparison, Invocation, RunCommand}; 183 pub fn parse_run_command(text: &str, signature: &Signature) -> ParseResult<Option<RunCommand>> { in parse_run_command() argument 2431 fn parse_run_command(&mut self, sig: &Signature) -> ParseResult<RunCommand> { in parse_run_command() argument 2440 Ok(RunCommand::Run(invocation, comparison, expected)) in parse_run_command() 2451 Ok(RunCommand::Run(invocation, comparison, expected)) in parse_run_command() 2459 Ok(RunCommand::Print(self.parse_run_invocation(sig)?)) in parse_run_command() 2463 Ok(RunCommand::Print(invocation)) in parse_run_command() 3633 fn parse(text: &str, sig: &Signature) -> ParseResult<RunCommand> { in parse_run_commands() argument
|
| /wasmtime-44.0.1/src/bin/ |
| H A D | wasmtime.rs | 47 run: wasmtime_cli::commands::RunCommand, 59 Run(wasmtime_cli::commands::RunCommand),
|
| /wasmtime-44.0.1/src/commands/ |
| H A D | wizer.rs | 1 use crate::commands::run::{CliInstance, Preloads, RunCommand}; 77 let mut run = RunCommand { in execute_async()
|
| H A D | run.rs | 44 pub struct RunCommand { struct 83 impl RunCommand { argument 93 pub(crate) fn debugger_run(&mut self) -> Result<Option<RunCommand>> { in debugger_run() argument 149 let mut debugger_run = RunCommand::try_parse_from( in debugger_run() 227 impl RunCommand { implementation
|
| H A D | serve.rs | 38 use crate::commands::run::RunCommand; 204 fn debugger_setup(&mut self) -> Result<Option<RunCommand>> { in debugger_setup() argument 258 let mut debugger_run = RunCommand::try_parse_from( in debugger_setup() 304 mut debug_run: RunCommand, in serve_under_debugger() argument
|