Configures whether the WebAssembly extended-const [proposal] will be enabled for compilation. This is `true` by default. [proposal]: https://github.com/webassembly/extended-const
(&mut self, enable: bool)
| 1187 | /// |
| 1188 | /// [proposal]: https://github.com/webassembly/extended-const |
| 1189 | pub fn wasm_extended_const(&mut self, enable: bool) -> &mut Self { |
| 1190 | self.wasm_features(WasmFeatures::EXTENDED_CONST, enable); |
| 1191 | self |
| 1192 | } |
| 1193 | |
| 1194 | /// Configures whether the [WebAssembly stack switching |
| 1195 | /// proposal][proposal] will be enabled for compilation. |
no test coverage detected