Module Js_of_ocaml_compiler.Unit_info

type t = {
  1. provides : Stdlib.StringSet.t;
  2. requires : Stdlib.StringSet.t;
  3. primitives : string list;
  4. crcs : Stdlib.Digest.t option Stdlib.StringMap.t;
  5. effects_without_cps : bool;
}
val of_cmo : Cmo_format.compilation_unit -> t
val of_primitives : string list -> t
val union : t -> t -> t
val empty : t
val prefix : string
val to_string : t -> string
val parse : t -> string -> t option