SetWasmMultiValue configures whether the wasm multi value proposal is enabled
(enabled bool)
| 97 | |
| 98 | // SetWasmMultiValue configures whether the wasm multi value proposal is enabled |
| 99 | func (cfg *Config) SetWasmMultiValue(enabled bool) { |
| 100 | C.wasmtime_config_wasm_multi_value_set(cfg.ptr(), C.bool(enabled)) |
| 101 | runtime.KeepAlive(cfg) |
| 102 | } |
| 103 | |
| 104 | // SetWasmMultiMemory configures whether the wasm multi memory proposal is enabled |
| 105 | func (cfg *Config) SetWasmMultiMemory(enabled bool) { |