package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type precedence = int
type parenRelation =
  1. | L
  2. | E
  3. | Any
  4. | Prec of precedence
type tolerability = precedence * parenRelation
type grammar_constr_prod_item =
  1. | GramConstrTerminal of Tok.t
  2. | GramConstrNonTerminal of Extend.constr_prod_entry_key * Names.Id.t option
  3. | GramConstrListMark of int * bool * int
type one_notation_grammar = {
  1. notgram_level : level;
  2. notgram_assoc : Extend.gram_assoc option;
  3. notgram_notation : Constrexpr.notation;
  4. notgram_prods : grammar_constr_prod_item list list;
}
type notation_grammar = {
  1. notgram_onlyprinting : bool;
  2. notgram_rules : one_notation_grammar list;
}