wasmtime-cli 44.0.0

Command-line interface for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
(module
  (global (export "g-v128") v128 (v128.const i64x2 0 0))
  (global (export "mg-v128") (mut v128) (v128.const i64x2 0 0))
)
(register "Mv128")

(module
  ;; TODO: Reactivate once the fix for https://bugs.chromium.org/p/v8/issues/detail?id=13732
  ;; has made it to the downstream node.js that we use on CI.
  ;; (import "Mv128" "g-v128" (global v128))
  (import "Mv128" "mg-v128" (global (mut v128)))
)