package elpi

  1. Overview
  2. Docs
type decl =
  1. | Begin of Loc.t
  2. | Namespace of Loc.t * Func.t
  3. | Constraint of Loc.t * Func.t list
  4. | Shorten of Loc.t * (Func.t * Func.t) list
  5. | End of Loc.t
  6. | Accumulated of Loc.t * (Elpi_util.Util.Digest.t * decl list) list
  7. | Clause of (Term.t, raw_attribute list) Clause.t
  8. | Local of Func.t list
  9. | Mode of Func.t Mode.t list
  10. | Chr of raw_attribute list Chr.t
  11. | Macro of (Func.t, Term.t) Macro.t
  12. | Type of raw_attribute list Type.t list
  13. | Pred of raw_attribute list Type.t * Func.t Mode.t
  14. | TypeAbbreviation of Func.t TypeAbbreviation.t
  15. | Ignored of Loc.t
val mkLocal : string list -> decl
type t = decl list