Configures whether the WebAssembly multi-value [proposal] will be enabled for compilation. This feature gates functions and blocks returning multiple values in a module, for example. This is `true` by default. [proposal]: https://github.com/webassembly/multi-value
(&mut self, enable: bool)
| 1147 | /// |
| 1148 | /// [proposal]: https://github.com/webassembly/multi-value |
| 1149 | pub fn wasm_multi_value(&mut self, enable: bool) -> &mut Self { |
| 1150 | self.wasm_features(WasmFeatures::MULTI_VALUE, enable); |
| 1151 | self |
| 1152 | } |
| 1153 | |
| 1154 | /// Configures whether the WebAssembly multi-memory [proposal] will |
| 1155 | /// be enabled for compilation. |