wasm-tools 1.248.0

CLI tools for interoperating with WebAssembly files
Documentation
;; RUN: wast --assert default --snapshot tests/snapshots % -f mvp

(assert_invalid
  (module quote
    "(global (shared i32) (i32.const 0))"
  )
  "shared globals require the shared-everything-threads proposal")

(assert_invalid
  (module quote
    "(global (import \"spectest\" \"global_i64\") (shared mut i64))"
  )
  "shared globals require the shared-everything-threads proposal")

(assert_invalid
  (module
    (global $a (import "spectest" "global_i32") i32)
    (func (result i32) (global.atomic.get seq_cst $a))
  )
  "shared-everything-threads support is not enabled")