Module Extend

Entry keys for constr notations

type 'a entry = 'a Gramlib.Grammar.GMake(CLexer.Lexer).Entry.e
type side =
| Left
| Right
type production_position =
| BorderProd of side * Gramlib.Gramext.g_assoc option
| InternalProd
type production_level =
| NextLevel
| NumLevel of int
type 'a constr_entry_key_gen =
| ETIdent
| ETGlobal
| ETBigint
| ETBinder of bool
| ETConstr of Constrexpr.notation_entry * Notation_term.constr_as_binder_kind option * 'a
| ETPattern of bool * int option
type constr_entry_key = (production_level * production_position) constr_entry_key_gen
type simple_constr_prod_entry_key = production_level option constr_entry_key_gen
type binder_entry_kind =
| ETBinderOpen
| ETBinderClosed of string Tok.p list
type binder_target =
| ForBinder
| ForTerm
type constr_prod_entry_key =
| ETProdName
| ETProdReference
| ETProdBigint
| ETProdConstr of Constrexpr.notation_entry * production_level * production_position
| ETProdPattern of int
| ETProdConstrList of Constrexpr.notation_entry * production_level * production_position * string Tok.p list
| ETProdBinderList of binder_entry_kind
AST for user-provided entries
type 'a user_symbol =
| Ulist1 of 'a user_symbol
| Ulist1sep of 'a user_symbol * string
| Ulist0 of 'a user_symbol
| Ulist0sep of 'a user_symbol * string
| Uopt of 'a user_symbol
| Uentry of 'a
| Uentryl of 'a * int
type ('a, 'b, 'c) ty_user_symbol =
| TUlist1 : ('a'b'c) ty_user_symbol -> ('a list'b list'c list) ty_user_symbol
| TUlist1sep : ('a'b'c) ty_user_symbol * string -> ('a list'b list'c list) ty_user_symbol
| TUlist0 : ('a'b'c) ty_user_symbol -> ('a list'b list'c list) ty_user_symbol
| TUlist0sep : ('a'b'c) ty_user_symbol * string -> ('a list'b list'c list) ty_user_symbol
| TUopt : ('a'b'c) ty_user_symbol -> ('a option'b option'c option) ty_user_symbol
| TUentry : ('a'b'c) Genarg.ArgT.tag -> ('a'b'c) ty_user_symbol
| TUentryl : ('a'b'c) Genarg.ArgT.tag * int -> ('a'b'c) ty_user_symbol
Type-safe grammar extension
type norec = Gramlib.Grammar.ty_norec
type mayrec = Gramlib.Grammar.ty_mayrec
type ('self, 'trec, 'a) symbol =
| Atoken : 'c Tok.p -> ('selfnorec'c) symbol
| Alist1 : ('self'trec'a) symbol -> ('self'trec'a list) symbol
| Alist1sep : ('self'trec'a) symbol * ('selfnorec_) symbol -> ('self'trec'a list) symbol
| Alist0 : ('self'trec'a) symbol -> ('self'trec'a list) symbol
| Alist0sep : ('self'trec'a) symbol * ('selfnorec_) symbol -> ('self'trec'a list) symbol
| Aopt : ('self'trec'a) symbol -> ('self'trec'a option) symbol
| Aself : ('selfmayrec'self) symbol
| Anext : ('selfmayrec'self) symbol
| Aentry : 'a entry -> ('selfnorec'a) symbol
| Aentryl : 'a entry * string -> ('selfnorec'a) symbol
| Arules : 'a rules list -> ('selfnorec'a) symbol
and ('self, 'trec, _, 'r) rule =
| Stop : ('selfnorec'r'r) rule
| Next : ('self_'a'r) rule * ('self_'b) symbol -> ('selfmayrec'b -> 'a'r) rule
| NextNoRec : ('selfnorec'a'r) rule * ('selfnorec'b) symbol -> ('selfnorec'b -> 'a'r) rule
and 'a rules =
| Rules : (_norec'actLoc.t -> 'a) rule * 'act -> 'a rules
type 'a production_rule =
| Rule : ('a_'actLoc.t -> 'a) rule * 'act -> 'a production_rule