Module TypeExpr.Object

type method_ = {
  1. name : string;
  2. type_ : TypeExpr.t;
}
type field =
  1. | Method of method_
  2. | Inherit of TypeExpr.t
type t = {
  1. fields : field list;
  2. open_ : bool;
}