Module PyIR.Module

type stats = {
  1. count_imported_modules : int;
}
type t = {
  1. name : Ident.t;
  2. toplevel : CFG.t;
  3. functions : CFG.t QualName.Map.t;
  4. stats : stats;
}
val pp : Stdlib.Format.formatter -> t -> unit