Lines Matching refs:path
1 use std::path::Path;
6 ($id:ident $name:tt $path:tt) => {
7 process_expanded($path, "", wasmtime::component::bindgen!({
8 path: $path,
12 process_expanded($path, "_async", wasmtime::component::bindgen!({
13 path: $path,
19 process_expanded($path, "_concurrent", wasmtime::component::bindgen!({
20 path: $path,
26 process_expanded($path, "_tracing_async", wasmtime::component::bindgen!({
27 path: $path,
35 fn process_expanded(path: &str, suffix: &str, src: &str) -> Result<()> { in process_expanded()
41 let mut stem = Path::new(path).file_stem().unwrap().to_os_string(); in process_expanded()