Module Lang.Class

type decl =
| ClassType of ClassType.expr
| Arrow of TypeExpr.label option * TypeExpr.t * decl
type t = {
id : Paths.Identifier.Class.t;
doc : Comment.docs;
virtual_ : bool;
params : TypeDecl.param list;
type_ : decl;
expansion : ClassSignature.t option;
}