(&mut self, enable: bool)
| 1041 | /// [proposal]: https://github.com/WebAssembly/gc |
| 1042 | #[cfg(feature = "gc")] |
| 1043 | pub fn wasm_gc(&mut self, enable: bool) -> &mut Self { |
| 1044 | self.wasm_features(WasmFeatures::GC, enable); |
| 1045 | self |
| 1046 | } |
| 1047 | |
| 1048 | /// Configures whether the WebAssembly SIMD proposal will be |
| 1049 | /// enabled for compilation. |