]> matita.cs.unibo.it Git - helm.git/blob - components/grafite_parser/grafiteParser.ml
First experimental version of the declarative proof language for Matita.
[helm.git] / components / grafite_parser / grafiteParser.ml
1 (* Copyright (C) 2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 (* $Id$ *)
27
28 open Printf
29
30 module Ast = CicNotationPt
31
32 type 'a localized_option =
33    LSome of 'a
34  | LNone of GrafiteAst.loc
35
36 type ast_statement =
37   (CicNotationPt.term, CicNotationPt.term,
38    CicNotationPt.term GrafiteAst.reduction, CicNotationPt.obj, string)
39     GrafiteAst.statement
40
41 type statement =
42   include_paths:string list ->
43   LexiconEngine.status ->
44     LexiconEngine.status * ast_statement localized_option
45
46 let grammar = CicNotationParser.level2_ast_grammar
47
48 let term = CicNotationParser.term
49 let statement = Grammar.Entry.create grammar "statement"
50
51 let add_raw_attribute ~text t = Ast.AttributedTerm (`Raw text, t)
52
53 let default_precedence = 50
54 let default_associativity = Gramext.NonA
55
56 EXTEND
57   GLOBAL: term statement;
58   arg: [
59    [ LPAREN; names = LIST1 IDENT SEP SYMBOL ",";
60       SYMBOL ":"; ty = term; RPAREN -> names,ty
61    | name = IDENT -> [name],Ast.Implicit
62    ]
63   ];
64   constructor: [ [ name = IDENT; SYMBOL ":"; typ = term -> (name, typ) ] ];
65   tactic_term: [ [ t = term LEVEL "90N" -> t ] ];
66   ident_list0: [ [ LPAREN; idents = LIST0 IDENT; RPAREN -> idents ] ];
67   tactic_term_list1: [
68     [ tactic_terms = LIST1 tactic_term SEP SYMBOL "," -> tactic_terms ]
69   ];
70   reduction_kind: [
71     [ IDENT "normalize" -> `Normalize
72     | IDENT "reduce" -> `Reduce
73     | IDENT "simplify" -> `Simpl
74     | IDENT "unfold"; t = OPT tactic_term -> `Unfold t
75     | IDENT "whd" -> `Whd ]
76   ];
77   sequent_pattern_spec: [
78    [ hyp_paths =
79       LIST0
80        [ id = IDENT ;
81          path = OPT [SYMBOL ":" ; path = tactic_term -> path ] ->
82          (id,match path with Some p -> p | None -> Ast.UserInput) ];
83      goal_path = OPT [ SYMBOL <:unicode<vdash>>; term = tactic_term -> term ] ->
84       let goal_path =
85        match goal_path, hyp_paths with
86           None, [] -> Some Ast.UserInput
87         | None, _::_ -> None
88         | Some goal_path, _ -> Some goal_path
89       in
90        hyp_paths,goal_path
91    ]
92   ];
93   pattern_spec: [
94     [ res = OPT [
95        "in";
96        wanted_and_sps =
97         [ "match" ; wanted = tactic_term ;
98           sps = OPT [ "in"; sps = sequent_pattern_spec -> sps ] ->
99            Some wanted,sps
100         | sps = sequent_pattern_spec ->
101            None,Some sps
102         ] ->
103          let wanted,hyp_paths,goal_path =
104           match wanted_and_sps with
105              wanted,None -> wanted, [], Some Ast.UserInput
106            | wanted,Some (hyp_paths,goal_path) -> wanted,hyp_paths,goal_path
107          in
108           wanted, hyp_paths, goal_path ] ->
109       match res with
110          None -> None,[],Some Ast.UserInput
111        | Some ps -> ps]
112   ];
113   direction: [
114     [ SYMBOL ">" -> `LeftToRight
115     | SYMBOL "<" -> `RightToLeft ]
116   ];
117   int: [ [ num = NUMBER -> int_of_string num ] ];
118   intros_spec: [
119     [ num = OPT [ num = int -> num ]; idents = OPT ident_list0 ->
120         let idents = match idents with None -> [] | Some idents -> idents in
121         num, idents
122     ]
123   ];
124   using: [ [ using = OPT [ IDENT "using"; t = tactic_term -> t ] -> using ] ];
125   tactic: [
126     [ IDENT "absurd"; t = tactic_term ->
127         GrafiteAst.Absurd (loc, t)
128     | IDENT "apply"; t = tactic_term ->
129         GrafiteAst.Apply (loc, t)
130     | IDENT "applyS"; t = tactic_term ->
131         GrafiteAst.ApplyS (loc, t)
132     | IDENT "assumption" ->
133         GrafiteAst.Assumption loc
134     | IDENT "auto"; params = 
135         LIST0 [ i = IDENT -> i,"" | i = IDENT ; SYMBOL "="; v = [ v = int ->
136           string_of_int v | v = IDENT -> v ] -> i,v ] ->
137         GrafiteAst.Auto (loc,params)
138     | IDENT "clear"; ids = LIST1 IDENT ->
139         GrafiteAst.Clear (loc, ids)
140     | IDENT "clearbody"; id = IDENT ->
141         GrafiteAst.ClearBody (loc,id)
142     | IDENT "change"; what = pattern_spec; "with"; t = tactic_term ->
143         GrafiteAst.Change (loc, what, t)
144     | IDENT "constructor"; n = int ->
145         GrafiteAst.Constructor (loc, n)
146     | IDENT "contradiction" ->
147         GrafiteAst.Contradiction loc
148     | IDENT "cut"; t = tactic_term; ident = OPT [ "as"; id = IDENT -> id] ->
149         GrafiteAst.Cut (loc, ident, t)
150     | IDENT "decompose"; types = OPT ident_list0; what = OPT IDENT;
151         idents = OPT [ "as"; idents = LIST1 IDENT -> idents ] ->
152         let types = match types with None -> [] | Some types -> types in
153         let idents = match idents with None -> [] | Some idents -> idents in
154         let to_spec id = GrafiteAst.Ident id in
155         GrafiteAst.Decompose (loc, List.rev_map to_spec types, what, idents)
156     | IDENT "demodulate" -> GrafiteAst.Demodulate loc
157     | IDENT "discriminate"; t = tactic_term ->
158         GrafiteAst.Discriminate (loc, t)
159     | IDENT "elim"; what = tactic_term; using = using;
160       (num, idents) = intros_spec ->
161         GrafiteAst.Elim (loc, what, using, num, idents)
162     | IDENT "elimType"; what = tactic_term; using = using;
163       (num, idents) = intros_spec ->
164         GrafiteAst.ElimType (loc, what, using, num, idents)
165     | IDENT "exact"; t = tactic_term ->
166         GrafiteAst.Exact (loc, t)
167     | IDENT "exists" ->
168         GrafiteAst.Exists loc
169     | IDENT "fail" -> GrafiteAst.Fail loc
170     | IDENT "fold"; kind = reduction_kind; t = tactic_term; p = pattern_spec ->
171         let (pt,_,_) = p in
172           if pt <> None then
173             raise (HExtlib.Localized (loc, CicNotationParser.Parse_error
174               ("the pattern cannot specify the term to replace, only its"
175               ^ " paths in the hypotheses and in the conclusion")))
176         else
177          GrafiteAst.Fold (loc, kind, t, p)
178     | IDENT "fourier" ->
179         GrafiteAst.Fourier loc
180     | IDENT "fwd"; hyp = IDENT; idents = OPT [ "as"; idents = LIST1 IDENT -> idents ] ->
181         let idents = match idents with None -> [] | Some idents -> idents in
182         GrafiteAst.FwdSimpl (loc, hyp, idents)
183     | IDENT "generalize"; p=pattern_spec; id = OPT ["as" ; id = IDENT -> id] ->
184        GrafiteAst.Generalize (loc,p,id)
185     | IDENT "goal"; n = int ->
186         GrafiteAst.Goal (loc, n)
187     | IDENT "id" -> GrafiteAst.IdTac loc
188     | IDENT "injection"; t = tactic_term ->
189         GrafiteAst.Injection (loc, t)
190     | IDENT "intro"; ident = OPT IDENT ->
191         let idents = match ident with None -> [] | Some id -> [id] in
192         GrafiteAst.Intros (loc, Some 1, idents)
193     | IDENT "intros"; (num, idents) = intros_spec ->
194         GrafiteAst.Intros (loc, num, idents)
195     | IDENT "inversion"; t = tactic_term ->
196         GrafiteAst.Inversion (loc, t)
197     | IDENT "lapply"; 
198       linear = OPT [ IDENT "linear" ];
199       depth = OPT [ IDENT "depth"; SYMBOL "="; i = int -> i ];
200       what = tactic_term; 
201       to_what = OPT [ "to" ; t = tactic_term_list1 -> t ];
202       ident = OPT [ "as" ; ident = IDENT -> ident ] ->
203         let linear = match linear with None -> false | Some _ -> true in 
204         let to_what = match to_what with None -> [] | Some to_what -> to_what in
205         GrafiteAst.LApply (loc, linear, depth, to_what, what, ident)
206     | IDENT "left" -> GrafiteAst.Left loc
207     | IDENT "letin"; where = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term ->
208         GrafiteAst.LetIn (loc, t, where)
209     | kind = reduction_kind; p = pattern_spec ->
210         GrafiteAst.Reduce (loc, kind, p)
211     | IDENT "reflexivity" ->
212         GrafiteAst.Reflexivity loc
213     | IDENT "replace"; p = pattern_spec; "with"; t = tactic_term ->
214         GrafiteAst.Replace (loc, p, t)
215     | IDENT "rewrite" ; d = direction; t = tactic_term ; p = pattern_spec ->
216        let (pt,_,_) = p in
217         if pt <> None then
218          raise
219           (HExtlib.Localized (loc,
220            (CicNotationParser.Parse_error
221             "the pattern cannot specify the term to rewrite, only its paths in the hypotheses and in the conclusion")))
222         else
223          GrafiteAst.Rewrite (loc, d, t, p)
224     | IDENT "right" ->
225         GrafiteAst.Right loc
226     | IDENT "ring" ->
227         GrafiteAst.Ring loc
228     | IDENT "split" ->
229         GrafiteAst.Split loc
230     | IDENT "symmetry" ->
231         GrafiteAst.Symmetry loc
232     | IDENT "transitivity"; t = tactic_term ->
233         GrafiteAst.Transitivity (loc, t)
234      (* Produzioni Aggiunte *)
235     | IDENT "assume" ; id = IDENT ; SYMBOL ":" ; t = tactic_term ->
236         GrafiteAst.Assume (loc, id, t)
237     | IDENT "suppose" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
238         GrafiteAst.Suppose (loc, t, id)
239     | IDENT "by" ; t = tactic_term ; IDENT "we" ; IDENT "proved" ; ty = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
240         GrafiteAst.By_term_we_proved (loc, t, ty, id)
241     | IDENT "we" ; IDENT "need" ; "to" ; IDENT "prove" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
242         GrafiteAst.We_need_to_prove (loc, t, id)
243     | IDENT "by" ; t = tactic_term ; IDENT "done" ->
244         GrafiteAst.Bydone (loc, t)
245     ]
246   ];
247   atomic_tactical:
248     [ "sequence" LEFTA
249       [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
250           let ts =
251             match t1 with
252             | GrafiteAst.Seq (_, l) -> l @ [ t2 ]
253             | _ -> [ t1; t2 ]
254           in
255           GrafiteAst.Seq (loc, ts)
256       ]
257     | "then" NONA
258       [ tac = SELF; SYMBOL ";";
259         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
260           (GrafiteAst.Then (loc, tac, tacs))
261       ]
262     | "loops" RIGHTA
263       [ IDENT "do"; count = int; tac = SELF; IDENT "end" ->
264           GrafiteAst.Do (loc, count, tac)
265       | IDENT "repeat"; tac = SELF; IDENT "end" -> GrafiteAst.Repeat (loc, tac)
266       ]
267     | "simple" NONA
268       [ IDENT "first";
269         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
270           GrafiteAst.First (loc, tacs)
271       | IDENT "try"; tac = SELF -> GrafiteAst.Try (loc, tac)
272       | IDENT "solve";
273         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
274           GrafiteAst.Solve (loc, tacs)
275       | LPAREN; tac = SELF; RPAREN -> tac
276       | tac = tactic -> GrafiteAst.Tactic (loc, tac)
277       ]
278     ];
279   punctuation_tactical:
280     [
281       [ SYMBOL "[" -> GrafiteAst.Branch loc
282       | SYMBOL "|" -> GrafiteAst.Shift loc
283       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> GrafiteAst.Pos (loc, i)
284       | SYMBOL "*"; SYMBOL ":" -> GrafiteAst.Wildcard loc
285       | SYMBOL "]" -> GrafiteAst.Merge loc
286       | SYMBOL ";" -> GrafiteAst.Semicolon loc
287       | SYMBOL "." -> GrafiteAst.Dot loc
288       ]
289     ];
290   tactical:
291     [ "simple" NONA
292       [ IDENT "focus"; goals = LIST1 int -> GrafiteAst.Focus (loc, goals)
293       | IDENT "unfocus" -> GrafiteAst.Unfocus loc
294       | IDENT "skip" -> GrafiteAst.Skip loc
295       | tac = atomic_tactical LEVEL "loops" -> tac
296       ]
297     ];
298   theorem_flavour: [
299     [ [ IDENT "definition"  ] -> `Definition
300     | [ IDENT "fact"        ] -> `Fact
301     | [ IDENT "lemma"       ] -> `Lemma
302     | [ IDENT "remark"      ] -> `Remark
303     | [ IDENT "theorem"     ] -> `Theorem
304     ]
305   ];
306   inductive_spec: [ [
307     fst_name = IDENT; params = LIST0 [ arg=arg -> arg ];
308     SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
309     fst_constructors = LIST0 constructor SEP SYMBOL "|";
310     tl = OPT [ "with";
311       types = LIST1 [
312         name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
313        OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
314           (name, true, typ, constructors) ] SEP "with" -> types
315     ] ->
316       let params =
317         List.fold_right
318           (fun (names, typ) acc ->
319             (List.map (fun name -> (name, typ)) names) @ acc)
320           params []
321       in
322       let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
323       let tl_ind_types = match tl with None -> [] | Some types -> types in
324       let ind_types = fst_ind_type :: tl_ind_types in
325       (params, ind_types)
326   ] ];
327   
328   record_spec: [ [
329     name = IDENT; params = LIST0 [ arg = arg -> arg ] ;
330      SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ; 
331      fields = LIST0 [ 
332        name = IDENT ; 
333        coercion = [ SYMBOL ":" -> false | SYMBOL ":"; SYMBOL ">" -> true ] ; 
334        ty = term -> (name,ty,coercion) 
335      ] SEP SYMBOL ";"; SYMBOL "}" -> 
336       let params =
337         List.fold_right
338           (fun (names, typ) acc ->
339             (List.map (fun name -> (name, typ)) names) @ acc)
340           params []
341       in
342       (params,name,typ,fields)
343   ] ];
344   
345   macro: [
346     [ [ IDENT "quit"  ] -> GrafiteAst.Quit loc
347 (*     | [ IDENT "abort" ] -> GrafiteAst.Abort loc *)
348 (*     | [ IDENT "undo"   ]; steps = OPT NUMBER ->
349         GrafiteAst.Undo (loc, int_opt steps)
350     | [ IDENT "redo"   ]; steps = OPT NUMBER ->
351         GrafiteAst.Redo (loc, int_opt steps) *)
352     | [ IDENT "check"   ]; t = term ->
353         GrafiteAst.Check (loc, t)
354     | [ IDENT "hint" ] -> GrafiteAst.Hint loc
355     | [ IDENT "whelp"; "match" ] ; t = term -> 
356         GrafiteAst.WMatch (loc,t)
357     | [ IDENT "whelp"; IDENT "instance" ] ; t = term -> 
358         GrafiteAst.WInstance (loc,t)
359     | [ IDENT "whelp"; IDENT "locate" ] ; id = QSTRING -> 
360         GrafiteAst.WLocate (loc,id)
361     | [ IDENT "whelp"; IDENT "elim" ] ; t = term ->
362         GrafiteAst.WElim (loc, t)
363     | [ IDENT "whelp"; IDENT "hint" ] ; t = term -> 
364         GrafiteAst.WHint (loc,t)
365     | [ IDENT "print" ]; name = QSTRING -> GrafiteAst.Print (loc, name)
366     ]
367   ];
368   alias_spec: [
369     [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
370       let alpha = "[a-zA-Z]" in
371       let num = "[0-9]+" in
372       let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
373       let ident = "\\("^alpha^ident_cont^"*\\|_"^ident_cont^"+\\)" in
374       let rex = Str.regexp ("^"^ident^"$") in
375       if Str.string_match rex id 0 then
376         if (try ignore (UriManager.uri_of_string uri); true
377             with UriManager.IllFormedUri _ -> false)
378         then
379           LexiconAst.Ident_alias (id, uri)
380         else 
381           raise
382            (HExtlib.Localized (loc, CicNotationParser.Parse_error (sprintf "Not a valid uri: %s" uri)))
383       else
384         raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
385           sprintf "Not a valid identifier: %s" id)))
386     | IDENT "symbol"; symbol = QSTRING;
387       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
388       SYMBOL "="; dsc = QSTRING ->
389         let instance =
390           match instance with Some i -> i | None -> 0
391         in
392         LexiconAst.Symbol_alias (symbol, instance, dsc)
393     | IDENT "num";
394       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
395       SYMBOL "="; dsc = QSTRING ->
396         let instance =
397           match instance with Some i -> i | None -> 0
398         in
399         LexiconAst.Number_alias (instance, dsc)
400     ]
401   ];
402   argument: [
403     [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
404       id = IDENT ->
405         Ast.IdentArg (List.length l, id)
406     ]
407   ];
408   associativity: [
409     [ IDENT "left";  IDENT "associative" -> Gramext.LeftA
410     | IDENT "right"; IDENT "associative" -> Gramext.RightA
411     | IDENT "non"; IDENT "associative" -> Gramext.NonA
412     ]
413   ];
414   precedence: [
415     [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
416   ];
417   notation: [
418     [ dir = OPT direction; s = QSTRING;
419       assoc = OPT associativity; prec = OPT precedence;
420       IDENT "for";
421       p2 = 
422         [ blob = UNPARSED_AST ->
423             add_raw_attribute ~text:(sprintf "@{%s}" blob)
424               (CicNotationParser.parse_level2_ast
425                 (Ulexing.from_utf8_string blob))
426         | blob = UNPARSED_META ->
427             add_raw_attribute ~text:(sprintf "${%s}" blob)
428               (CicNotationParser.parse_level2_meta
429                 (Ulexing.from_utf8_string blob))
430         ] ->
431           let assoc =
432             match assoc with
433             | None -> default_associativity
434             | Some assoc -> assoc
435           in
436           let prec =
437             match prec with
438             | None -> default_precedence
439             | Some prec -> prec
440           in
441           let p1 =
442             add_raw_attribute ~text:s
443               (CicNotationParser.parse_level1_pattern
444                 (Ulexing.from_utf8_string s))
445           in
446           (dir, p1, assoc, prec, p2)
447     ]
448   ];
449   level3_term: [
450     [ u = URI -> Ast.UriPattern (UriManager.uri_of_string u)
451     | id = IDENT -> Ast.VarPattern id
452     | SYMBOL "_" -> Ast.ImplicitPattern
453     | LPAREN; terms = LIST1 SELF; RPAREN ->
454         (match terms with
455         | [] -> assert false
456         | [term] -> term
457         | terms -> Ast.ApplPattern terms)
458     ]
459   ];
460   interpretation: [
461     [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
462         (s, args, t)
463     ]
464   ];
465   
466   include_command: [ [
467       IDENT "include" ; path = QSTRING -> 
468         loc,path,LexiconAst.WithPreferences
469     | IDENT "include'" ; path = QSTRING -> 
470         loc,path,LexiconAst.WithoutPreferences
471    ]];
472
473   grafite_command: [ [
474       IDENT "set"; n = QSTRING; v = QSTRING ->
475         GrafiteAst.Set (loc, n, v)
476     | IDENT "drop" -> GrafiteAst.Drop loc
477     | IDENT "qed" -> GrafiteAst.Qed loc
478     | IDENT "variant" ; name = IDENT; SYMBOL ":"; 
479       typ = term; SYMBOL <:unicode<def>> ; newname = IDENT ->
480         GrafiteAst.Obj (loc, 
481           Ast.Theorem 
482             (`Variant,name,typ,Some (Ast.Ident (newname, None))))
483     | flavour = theorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
484       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
485         GrafiteAst.Obj (loc, Ast.Theorem (flavour, name, typ, body))
486     | flavour = theorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
487       body = term ->
488         GrafiteAst.Obj (loc,
489           Ast.Theorem (flavour, name, Ast.Implicit, Some body))
490     | IDENT "axiom"; name = IDENT; SYMBOL ":"; typ = term ->
491         GrafiteAst.Obj (loc, Ast.Theorem (`Axiom, name, typ, None))
492     | "let"; ind_kind = [ "corec" -> `CoInductive | "rec"-> `Inductive ];
493         defs = CicNotationParser.let_defs -> 
494           let name,ty = 
495             match defs with
496             | ((Ast.Ident (name, None), Some ty),_,_) :: _ -> name,ty
497             | ((Ast.Ident (name, None), None),_,_) :: _ ->
498                 name, Ast.Implicit
499             | _ -> assert false 
500           in
501           let body = Ast.Ident (name,None) in
502           GrafiteAst.Obj (loc, Ast.Theorem(`Definition, name, ty,
503             Some (Ast.LetRec (ind_kind, defs, body))))
504     | IDENT "inductive"; spec = inductive_spec ->
505         let (params, ind_types) = spec in
506         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
507     | IDENT "coinductive"; spec = inductive_spec ->
508         let (params, ind_types) = spec in
509         let ind_types = (* set inductive flags to false (coinductive) *)
510           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
511             ind_types
512         in
513         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
514     | IDENT "coercion" ; suri = URI ->
515         GrafiteAst.Coercion (loc, UriManager.uri_of_string suri, true)
516     | IDENT "record" ; (params,name,ty,fields) = record_spec ->
517         GrafiteAst.Obj (loc, Ast.Record (params,name,ty,fields))
518     | IDENT "default" ; what = QSTRING ; uris = LIST1 URI ->
519        let uris = List.map UriManager.uri_of_string uris in
520         GrafiteAst.Default (loc,what,uris)
521   ]];
522   lexicon_command: [ [
523       IDENT "alias" ; spec = alias_spec ->
524         LexiconAst.Alias (loc, spec)
525     | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
526         LexiconAst.Notation (loc, dir, l1, assoc, prec, l2)
527     | IDENT "interpretation"; id = QSTRING;
528       (symbol, args, l3) = interpretation ->
529         LexiconAst.Interpretation (loc, id, (symbol, args), l3)
530   ]];
531   executable: [
532     [ cmd = grafite_command; SYMBOL "." -> GrafiteAst.Command (loc, cmd)
533     | tac = tactical; punct = punctuation_tactical ->
534         GrafiteAst.Tactical (loc, tac, Some punct)
535     | punct = punctuation_tactical -> GrafiteAst.Tactical (loc, punct, None)
536     | mac = macro; SYMBOL "." -> GrafiteAst.Macro (loc, mac)
537     ]
538   ];
539   comment: [
540     [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT -> 
541        GrafiteAst.Code (loc, ex)
542     | str = NOTE -> 
543        GrafiteAst.Note (loc, str)
544     ]
545   ];
546   statement: [
547     [ ex = executable ->
548        fun ~include_paths status -> status,LSome(GrafiteAst.Executable (loc,ex))
549     | com = comment ->
550        fun ~include_paths status -> status,LSome (GrafiteAst.Comment (loc, com))
551     | (iloc,fname,mode) = include_command ; SYMBOL "."  ->
552        fun ~include_paths status ->
553         let buri, fullpath = 
554           DependenciesParser.baseuri_of_script ~include_paths fname 
555         in
556         let status =
557          LexiconEngine.eval_command status 
558            (LexiconAst.Include (iloc,buri,mode,fullpath))
559         in
560          status,
561           LSome
562           (GrafiteAst.Executable
563            (loc,GrafiteAst.Command
564             (loc,GrafiteAst.Include (iloc,buri))))
565     | scom = lexicon_command ; SYMBOL "." ->
566        fun ~include_paths status ->
567         let status = LexiconEngine.eval_command status scom in
568          status,LNone loc
569     | EOI -> raise End_of_file
570     ]
571   ];
572 END
573
574 let exc_located_wrapper f =
575   try
576     f ()
577   with
578   | Stdpp.Exc_located (_, End_of_file) -> raise End_of_file
579   | Stdpp.Exc_located (floc, Stream.Error msg) ->
580       raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
581   | Stdpp.Exc_located (floc, exn) ->
582       raise
583        (HExtlib.Localized (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
584
585 let parse_statement lexbuf =
586   exc_located_wrapper
587     (fun () -> (Grammar.Entry.parse statement (Obj.magic lexbuf)))