(args: Vec<wast::WastArg>)
| 715 | } |
| 716 | |
| 717 | fn convert_wastargs(args: Vec<wast::WastArg>) -> Result<Vec<WasmValue>> { |
| 718 | args.into_iter().map(wastarg2tinywasmvalue).collect() |
| 719 | } |
| 720 | |
| 721 | fn convert_wastret<'a>(args: impl Iterator<Item = wast::WastRet<'a>>) -> Result<Vec<Vec<WasmValue>>> { |
| 722 | let mut alternatives = vec![Vec::new()]; |