Module Js_of_ocaml_compiler.Shape
type t =
| Top
| Block of t list
| Function of {
arity : int;
pure : bool;
res : t;
}
val to_string : t -> string
val of_string : string -> t
val equal : t -> t -> bool
module Store : sig ... end
module State : sig ... end