blob: 0b542608aa0472b56777ab4a52c7f03f29c978e9 (
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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(* $Id: g_module.ml4,v 1.6.2.1 2004/07/16 19:30:39 herbelin Exp $ *)
open Pp
open Ast
open Pcoq
open Prim
open Module
open Util
open Topconstr
(* Grammar rules for module expressions and types *)
if !Options.v7 then
GEXTEND Gram
GLOBAL: module_expr module_type;
module_expr:
[ [ qid = qualid -> CMEident qid
| me1 = module_expr; me2 = module_expr -> CMEapply (me1,me2)
| "("; me = module_expr; ")" -> me
(* ... *)
] ]
;
with_declaration:
[ [ "Definition"; id = identref; ":="; c = Constr.constr ->
CWith_Definition (id,c)
| IDENT "Module"; id = identref; ":="; qid = qualid ->
CWith_Module (id,qid)
] ]
;
module_type:
[ [ qid = qualid -> CMTEident qid
(* ... *)
| mty = module_type; "with"; decl = with_declaration ->
CMTEwith (mty,decl) ] ]
;
END
|