Module Classify.Archive

type name = string
type t = {
  1. name : name;
  2. modules : StringSet.t;
  3. intf_deps : StringSet.t;
  4. impl_deps : StringSet.t;
}
val empty : name -> t
val normalise : t -> t
val add_unit_info : t -> (Compilation_unit.t * Import_info.t list * Import_info.t list) -> t
val add_module_by_name : t -> StringSet.elt -> t
val filter_by_cmis : StringSet.elt list -> t -> t
val has_modules : t -> bool
val pp : Format.formatter -> t -> unit