aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/entry.mli
blob: 6854a5cb455a8aafd9df5eb12b73c9334598685e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(** Typed grammar entries *)

type 'a t
(** Typed grammar entries. We need to defined them here so that they are
    marshallable and defined before the Pcoq.Gram module. They are basically
    unique names made of a universe and an entry name. They should be kept
    synchronized with the {!Pcoq} entries though. *)

type repr =
| Static of string * string
| Dynamic of string
(** Representation of entries. *)

(** Table of Coq statically defined grammar entries *)

type universe

(** There are four predefined universes: "prim", "constr", "tactic", "vernac" *)

val get_univ : string -> universe
val univ_name : universe -> string

val uprim : universe
val uconstr : universe
val utactic : universe
val uvernac : universe

(** {5 Uniquely defined entries} *)

val create : universe -> string -> 'a t
(** Create an entry. They should be synchronized with the entries defined in
    {!Pcoq}. *)

(** {5 Meta-programming} *)

val dynamic : string -> 'a t
(** Dynamic entries. They refer to entries defined in the code source and may
    only be used in meta-programming definitions from the grammar directory. *)

val repr : 'a t -> repr

val unsafe_of_name : (string * string) -> 'a t