(&mut self, enable: bool)
| 1304 | /// [proposal]: https://github.com/WebAssembly/component-model/issues/525 |
| 1305 | #[cfg(feature = "component-model")] |
| 1306 | pub fn wasm_component_model_gc(&mut self, enable: bool) -> &mut Self { |
| 1307 | self.wasm_features(WasmFeatures::CM_GC, enable); |
| 1308 | self |
| 1309 | } |
| 1310 | |
| 1311 | /// Configures whether the component model map type is enabled or not. |
| 1312 | /// |
no test coverage detected