Module Lang.ClassSource

type decl =
  1. | ClassType of ClassType.expr
  2. | Arrow of TypeExpr.label option * TypeExpr.t * decl
type t = {
  1. id : Paths.Identifier.Class.t;
  2. locs : Paths.Identifier.SourceLocation.t option;
  3. doc : Comment.docs;
  4. virtual_ : bool;
  5. params : TypeDecl.param list;
  6. type_ : decl;
  7. expansion : ClassSignature.t option;
}