MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / wasm_memory64

Method wasm_memory64

crates/wasmtime/src/config.rs:1178–1181  ·  view source on GitHub ↗

Configures whether the WebAssembly memory64 [proposal] will be enabled for compilation. Note that this the upstream specification is not finalized and Wasmtime may also have bugs for this feature since it hasn't been exercised much. This is `false` by default. [proposal]: https://github.com/webassembly/memory64

(&mut self, enable: bool)

Source from the content-addressed store, hash-verified

1176 ///
1177 /// [proposal]: https://github.com/webassembly/memory64
1178 pub fn wasm_memory64(&mut self, enable: bool) -> &mut Self {
1179 self.wasm_features(WasmFeatures::MEMORY64, enable);
1180 self
1181 }
1182
1183 /// Configures whether the WebAssembly extended-const [proposal] will
1184 /// be enabled for compilation.

Callers 6

memory64_maximum_minimumFunction · 0.45
apply_test_configFunction · 0.45
check_memory_accessesFunction · 0.45
newMethod · 0.45

Calls 1

wasm_featuresMethod · 0.80

Tested by

no test coverage detected