\brief Returns the type of this `ArrayRef`.
| 72 | |
| 73 | /// \brief Returns the type of this `ArrayRef`. |
| 74 | ArrayType ty(Store::Context cx) const { |
| 75 | auto *ret = wasmtime_arrayref_type(cx.capi(), &raw); |
| 76 | return ArrayType(ret); |
| 77 | } |
| 78 | }; |
| 79 | |
| 80 | } // namespace wasmtime |
nothing calls this directly
no test coverage detected