package owi

  1. Overview
  2. Docs
type nonrec ibinop =
  1. | Add
  2. | Sub
  3. | Mul
type instr =
  1. | I32_const of Int32.t
  2. | I64_const of Int64.t
  3. | F32_const of Float32.t
  4. | F64_const of Float64.t
  5. | Ref_null of ref_type
  6. | Ref_func of int
  7. | Global_get of int
  8. | I_binop of nn * ibinop
type expr = instr list