Lang.ClassSignature
module Constraint : sig ... end
module Inherit : sig ... end
type item =
| Method of Method.t
| InstanceVariable of InstanceVariable.t
| Constraint of Constraint.t
| Inherit of Inherit.t
| Comment of Comment.docs_or_stop
type t = {
self : TypeExpr.t option;
items : item list;
doc : Comment.docs;
}