Configures whether the WebAssembly memory64 [proposal] will be enabled for compilation. Note that this the upstream specification is not finalized and Wasmtime may also have bugs for this feature since it hasn't been exercised much. This is `false` by default. [proposal]: https://github.com/webassembly/memory64
(&mut self, enable: bool)
| 1176 | /// |
| 1177 | /// [proposal]: https://github.com/webassembly/memory64 |
| 1178 | pub fn wasm_memory64(&mut self, enable: bool) -> &mut Self { |
| 1179 | self.wasm_features(WasmFeatures::MEMORY64, enable); |
| 1180 | self |
| 1181 | } |
| 1182 | |
| 1183 | /// Configures whether the WebAssembly extended-const [proposal] will |
| 1184 | /// be enabled for compilation. |
no test coverage detected