Module TypeExpr.Object

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