Module Component.ClassType

type expr =
  1. | Constr of Cpath.class_type * TypeExpr.t list
  2. | Signature of ClassSignature.t
type t = {
  1. doc : CComment.docs;
  2. virtual_ : bool;
  3. params : TypeDecl.param list;
  4. expr : expr;
  5. expansion : ClassSignature.t option;
}