blob: 74ced431c97f60dd7f7337cd78c707df6a5209a8 (
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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
open Pp
open CErrors
open Util
open Notation
(* Register the grammar of notation for parsing and printing
(also register the parsing rule if not onlyprinting) *)
let notation_grammar_map = Summary.ref ~name:"notation_grammar_map" NotationMap.empty
let declare_notation_grammar ntn rule =
try
let _ = NotationMap.find ntn !notation_grammar_map in
anomaly (str "Notation " ++ pr_notation ntn ++ str " is already assigned a grammar.")
with Not_found ->
notation_grammar_map := NotationMap.add ntn rule !notation_grammar_map
let grammar_of_notation ntn =
NotationMap.find ntn !notation_grammar_map
let notation_subentries_map = Summary.ref ~name:"notation_subentries_map" NotationMap.empty
let declare_notation_subentries ntn entries =
try
let _ = NotationMap.find ntn !notation_grammar_map in
anomaly (str "Notation " ++ pr_notation ntn ++ str " is already assigned a grammar.")
with Not_found ->
notation_subentries_map := NotationMap.add ntn entries !notation_subentries_map
let subentries_of_notation ntn =
NotationMap.find ntn !notation_subentries_map
let get_defined_notations () =
NotationSet.elements @@ NotationMap.domain !notation_grammar_map
|