binaryen-sys 0.13.0

Bindings to the binaryen library
Documentation
1
2
3
4
5
6
7
8
;; RUN: not wasm-opt %s --new-wat-parser -all 2>&1 | filecheck %s

;; CHECK: global initializer should only refer to previous globals

(module
  (global $a i32 (global.get $b))
  (global $b i32 (global.get $a))
)