Revision 1143fc9798ec6e5f58164caffdaca7178402e80b authored by Alain Mebsout on 16 November 2022, 15:55:34 UTC, committed by Alain Mebsout on 18 November 2022, 17:03:24 UTC
1 parent 9bd2352
Raw File
free.mli
module Set : Set.S with type elt = int32

type t = {
  types : Set.t;
  globals : Set.t;
  tables : Set.t;
  memories : Set.t;
  funcs : Set.t;
  elems : Set.t;
  datas : Set.t;
  locals : Set.t;
  labels : Set.t;
}

val empty : t

val func : Ast.block_table -> Ast.func -> t Lwt.t

val module_ : Ast.module_ -> t Lwt.t

val list : ('a -> t) -> 'a list -> t
back to top