Module PyEnv.Info

Type information about various entities (toplevel declarations, temporaries, ...).

type kind =
  1. | Code
  2. | Class
  3. | Other
type t = {
  1. kind : kind;
  2. typ : T.Typ.t;
}
val default : T.Typ.t -> t
val is_code : kind -> bool
val is_class : kind -> bool