module Cty: sig .. end
Class type expressions
let mk:
(
~loc: Ast_helper.loc=?,
~attrs: Ast_helper.attrs=?,
Parsetree.class_type_desc
) =>
Parsetree.class_type;
let attr: (Parsetree.class_type, Parsetree.attribute) => Parsetree.class_type;
let constr:
(
~loc: Ast_helper.loc=?,
~attrs: Ast_helper.attrs=?,
Ast_helper.lid,
list(Parsetree.core_type)
) =>
Parsetree.class_type;
let signature:
(
~loc: Ast_helper.loc=?,
~attrs: Ast_helper.attrs=?,
Parsetree.class_signature
) =>
Parsetree.class_type;
let arrow:
(
~loc: Ast_helper.loc=?,
~attrs: Ast_helper.attrs=?,
Asttypes.arg_label,
Parsetree.core_type,
Parsetree.class_type
) =>
Parsetree.class_type;
let extension:
(~loc: Ast_helper.loc=?, ~attrs: Ast_helper.attrs=?, Parsetree.extension) =>
Parsetree.class_type;
let open_:
(
~loc: Ast_helper.loc=?,
~attrs: Ast_helper.attrs=?,
Parsetree.open_description,
Parsetree.class_type
) =>
Parsetree.class_type;