(&mut self, enable: bool)
| 1009 | /// [proposal]: https://github.com/WebAssembly/function-references |
| 1010 | #[cfg(feature = "gc")] |
| 1011 | pub fn wasm_function_references(&mut self, enable: bool) -> &mut Self { |
| 1012 | self.wasm_features(WasmFeatures::FUNCTION_REFERENCES, enable); |
| 1013 | self |
| 1014 | } |
| 1015 | |
| 1016 | /// Configures whether the [WebAssembly wide-arithmetic][proposal] will be |
| 1017 | /// enabled for compilation. |