package override

  1. Overview
  2. Docs

Parameters

module Types : Ast_types

Signature

include module type of struct include Types end
type item = Types.item
type module_binding = Types.module_binding
type module_expr = Types.module_expr
type contents = item list
type include_declaration = module_expr Ppxlib.Parsetree.include_infos
type item_desc =
  1. | Extension of Ppxlib.Parsetree.extension * Ppxlib.Parsetree.attributes
  2. | Type of Ppxlib.Asttypes.rec_flag * Ppxlib.Parsetree.type_declaration list
  3. | Module of module_binding
  4. | Modtype of Ppxlib.Parsetree.module_type_declaration
  5. | Include of include_declaration
  6. | Other of item
type wrapped_item = item_desc Ppxlib.Location.loc
type 'a attributed = {
  1. attrs : Ppxlib.Parsetree.attributes;
  2. contents : 'a;
}
val mkattr : loc:Ppxlib.location -> ?attrs:Ppxlib.Parsetree.attributes -> 'a -> 'a attributed Ppxlib.Location.loc
type module_binding_desc = {
  1. name : string option Ppxlib.Location.loc;
  2. expr : module_expr;
}
type wrapped_module_binding = module_binding_desc attributed Ppxlib.Location.loc
type module_expr_desc =
  1. | Ident of Ppxlib.Longident.t Ppxlib.Location.loc
  2. | Contents of contents
  3. | Functor of Metapp.functor_parameter * module_expr
  4. | Constraint of module_expr Stdcompat.Lazy.t * Ppxlib.Parsetree.module_type
  5. | Other of module_expr
type wrapped_module_expr = module_expr_desc attributed Ppxlib.Location.loc
OCaml

Innovation. Community. Security.