Module Component.ClassType

type expr =
  1. | Constr of Cpath.class_type * TypeExpr.t list
  2. | Signature of ClassSignature.t
type t = {
  1. source_loc : Odoc_model.Paths.Identifier.SourceLocation.t option;
  2. source_loc_jane : Odoc_model.Lang.Source_loc_jane.t option;
  3. doc : CComment.docs;
  4. virtual_ : bool;
  5. params : TypeDecl.param list;
  6. expr : expr;
  7. expansion : ClassSignature.t option;
}