Lines Matching refs:execute
99 pub fn execute(self) -> Result<()> { in execute() method
107 Subcommand::Run(c) => c.execute(), in execute()
110 Subcommand::Config(c) => c.execute(), in execute()
113 Subcommand::Compile(c) => c.execute(), in execute()
116 Subcommand::Explore(c) => c.execute(), in execute()
119 Subcommand::Serve(c) => c.execute(), in execute()
122 Subcommand::Settings(c) => c.execute(), in execute()
125 Subcommand::Wast(c) => c.execute(), in execute()
128 Subcommand::Completion(c) => c.execute(), in execute()
131 Subcommand::Objdump(c) => c.execute(), in execute()
134 Subcommand::Wizer(c) => c.execute(), in execute()
159 pub fn execute(&self) -> Result<()> { in execute() method
172 return Wasmtime::parse().execute(); in main()