Configures whether the [WebAssembly wide-arithmetic][proposal] will be enabled for compilation. This feature is `false` by default. [proposal]: https://github.com/WebAssembly/wide-arithmetic
(&mut self, enable: bool)
| 1020 | /// |
| 1021 | /// [proposal]: https://github.com/WebAssembly/wide-arithmetic |
| 1022 | pub fn wasm_wide_arithmetic(&mut self, enable: bool) -> &mut Self { |
| 1023 | self.wasm_features(WasmFeatures::WIDE_ARITHMETIC, enable); |
| 1024 | self |
| 1025 | } |
| 1026 | |
| 1027 | /// Configures whether the [WebAssembly Garbage Collection |
| 1028 | /// proposal][proposal] will be enabled for compilation. |
no test coverage detected