The `call` AST is defined as call<R extends Result>(r :R, funcIndex: VarUint32, args :AnyOp[]) where `R` is the return type. This does not include `Void` (which needs `AnyResult`) How do I call a `void` function?
The
callAST is defined aswhere
Ris the return type. This does not includeVoid(which needsAnyResult)How do I call a
voidfunction?