]> matita.cs.unibo.it Git - helm.git/blob - components/grafite_parser/grafiteParser.ml
Demodulate used to be a reduction_kind and it used to take a ~pattern.
[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     ]
235   ];
236   atomic_tactical:
237     [ "sequence" LEFTA
238       [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
239           let ts =
240             match t1 with
241             | GrafiteAst.Seq (_, l) -> l @ [ t2 ]
242             | _ -> [ t1; t2 ]
243           in
244           GrafiteAst.Seq (loc, ts)
245       ]
246     | "then" NONA
247       [ tac = SELF; SYMBOL ";";
248         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
249           (GrafiteAst.Then (loc, tac, tacs))
250       ]
251     | "loops" RIGHTA
252       [ IDENT "do"; count = int; tac = SELF; IDENT "end" ->
253           GrafiteAst.Do (loc, count, tac)
254       | IDENT "repeat"; tac = SELF; IDENT "end" -> GrafiteAst.Repeat (loc, tac)
255       ]
256     | "simple" NONA
257       [ IDENT "first";
258         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
259           GrafiteAst.First (loc, tacs)
260       | IDENT "try"; tac = SELF -> GrafiteAst.Try (loc, tac)
261       | IDENT "solve";
262         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
263           GrafiteAst.Solve (loc, tacs)
264       | LPAREN; tac = SELF; RPAREN -> tac
265       | tac = tactic -> GrafiteAst.Tactic (loc, tac)
266       ]
267     ];
268   punctuation_tactical:
269     [
270       [ SYMBOL "[" -> GrafiteAst.Branch loc
271       | SYMBOL "|" -> GrafiteAst.Shift loc
272       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> GrafiteAst.Pos (loc, i)
273       | SYMBOL "*"; SYMBOL ":" -> GrafiteAst.Wildcard loc
274       | SYMBOL "]" -> GrafiteAst.Merge loc
275       | SYMBOL ";" -> GrafiteAst.Semicolon loc
276       | SYMBOL "." -> GrafiteAst.Dot loc
277       ]
278     ];
279   tactical:
280     [ "simple" NONA
281       [ IDENT "focus"; goals = LIST1 int -> GrafiteAst.Focus (loc, goals)
282       | IDENT "unfocus" -> GrafiteAst.Unfocus loc
283       | IDENT "skip" -> GrafiteAst.Skip loc
284       | tac = atomic_tactical LEVEL "loops" -> tac
285       ]
286     ];
287   theorem_flavour: [
288     [ [ IDENT "definition"  ] -> `Definition
289     | [ IDENT "fact"        ] -> `Fact
290     | [ IDENT "lemma"       ] -> `Lemma
291     | [ IDENT "remark"      ] -> `Remark
292     | [ IDENT "theorem"     ] -> `Theorem
293     ]
294   ];
295   inductive_spec: [ [
296     fst_name = IDENT; params = LIST0 [ arg=arg -> arg ];
297     SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
298     fst_constructors = LIST0 constructor SEP SYMBOL "|";
299     tl = OPT [ "with";
300       types = LIST1 [
301         name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
302        OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
303           (name, true, typ, constructors) ] SEP "with" -> types
304     ] ->
305       let params =
306         List.fold_right
307           (fun (names, typ) acc ->
308             (List.map (fun name -> (name, typ)) names) @ acc)
309           params []
310       in
311       let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
312       let tl_ind_types = match tl with None -> [] | Some types -> types in
313       let ind_types = fst_ind_type :: tl_ind_types in
314       (params, ind_types)
315   ] ];
316   
317   record_spec: [ [
318     name = IDENT; params = LIST0 [ arg = arg -> arg ] ;
319      SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ; 
320      fields = LIST0 [ 
321        name = IDENT ; 
322        coercion = [ SYMBOL ":" -> false | SYMBOL ":"; SYMBOL ">" -> true ] ; 
323        ty = term -> (name,ty,coercion) 
324      ] SEP SYMBOL ";"; SYMBOL "}" -> 
325       let params =
326         List.fold_right
327           (fun (names, typ) acc ->
328             (List.map (fun name -> (name, typ)) names) @ acc)
329           params []
330       in
331       (params,name,typ,fields)
332   ] ];
333   
334   macro: [
335     [ [ IDENT "quit"  ] -> GrafiteAst.Quit loc
336 (*     | [ IDENT "abort" ] -> GrafiteAst.Abort loc *)
337 (*     | [ IDENT "undo"   ]; steps = OPT NUMBER ->
338         GrafiteAst.Undo (loc, int_opt steps)
339     | [ IDENT "redo"   ]; steps = OPT NUMBER ->
340         GrafiteAst.Redo (loc, int_opt steps) *)
341     | [ IDENT "check"   ]; t = term ->
342         GrafiteAst.Check (loc, t)
343     | [ IDENT "hint" ] -> GrafiteAst.Hint loc
344     | [ IDENT "whelp"; "match" ] ; t = term -> 
345         GrafiteAst.WMatch (loc,t)
346     | [ IDENT "whelp"; IDENT "instance" ] ; t = term -> 
347         GrafiteAst.WInstance (loc,t)
348     | [ IDENT "whelp"; IDENT "locate" ] ; id = QSTRING -> 
349         GrafiteAst.WLocate (loc,id)
350     | [ IDENT "whelp"; IDENT "elim" ] ; t = term ->
351         GrafiteAst.WElim (loc, t)
352     | [ IDENT "whelp"; IDENT "hint" ] ; t = term -> 
353         GrafiteAst.WHint (loc,t)
354     | [ IDENT "print" ]; name = QSTRING -> GrafiteAst.Print (loc, name)
355     ]
356   ];
357   alias_spec: [
358     [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
359       let alpha = "[a-zA-Z]" in
360       let num = "[0-9]+" in
361       let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
362       let ident = "\\("^alpha^ident_cont^"*\\|_"^ident_cont^"+\\)" in
363       let rex = Str.regexp ("^"^ident^"$") in
364       if Str.string_match rex id 0 then
365         if (try ignore (UriManager.uri_of_string uri); true
366             with UriManager.IllFormedUri _ -> false)
367         then
368           LexiconAst.Ident_alias (id, uri)
369         else 
370           raise
371            (HExtlib.Localized (loc, CicNotationParser.Parse_error (sprintf "Not a valid uri: %s" uri)))
372       else
373         raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
374           sprintf "Not a valid identifier: %s" id)))
375     | IDENT "symbol"; symbol = QSTRING;
376       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
377       SYMBOL "="; dsc = QSTRING ->
378         let instance =
379           match instance with Some i -> i | None -> 0
380         in
381         LexiconAst.Symbol_alias (symbol, instance, dsc)
382     | IDENT "num";
383       instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
384       SYMBOL "="; dsc = QSTRING ->
385         let instance =
386           match instance with Some i -> i | None -> 0
387         in
388         LexiconAst.Number_alias (instance, dsc)
389     ]
390   ];
391   argument: [
392     [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
393       id = IDENT ->
394         Ast.IdentArg (List.length l, id)
395     ]
396   ];
397   associativity: [
398     [ IDENT "left";  IDENT "associative" -> Gramext.LeftA
399     | IDENT "right"; IDENT "associative" -> Gramext.RightA
400     | IDENT "non"; IDENT "associative" -> Gramext.NonA
401     ]
402   ];
403   precedence: [
404     [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
405   ];
406   notation: [
407     [ dir = OPT direction; s = QSTRING;
408       assoc = OPT associativity; prec = OPT precedence;
409       IDENT "for";
410       p2 = 
411         [ blob = UNPARSED_AST ->
412             add_raw_attribute ~text:(sprintf "@{%s}" blob)
413               (CicNotationParser.parse_level2_ast
414                 (Ulexing.from_utf8_string blob))
415         | blob = UNPARSED_META ->
416             add_raw_attribute ~text:(sprintf "${%s}" blob)
417               (CicNotationParser.parse_level2_meta
418                 (Ulexing.from_utf8_string blob))
419         ] ->
420           let assoc =
421             match assoc with
422             | None -> default_associativity
423             | Some assoc -> assoc
424           in
425           let prec =
426             match prec with
427             | None -> default_precedence
428             | Some prec -> prec
429           in
430           let p1 =
431             add_raw_attribute ~text:s
432               (CicNotationParser.parse_level1_pattern
433                 (Ulexing.from_utf8_string s))
434           in
435           (dir, p1, assoc, prec, p2)
436     ]
437   ];
438   level3_term: [
439     [ u = URI -> Ast.UriPattern (UriManager.uri_of_string u)
440     | id = IDENT -> Ast.VarPattern id
441     | SYMBOL "_" -> Ast.ImplicitPattern
442     | LPAREN; terms = LIST1 SELF; RPAREN ->
443         (match terms with
444         | [] -> assert false
445         | [term] -> term
446         | terms -> Ast.ApplPattern terms)
447     ]
448   ];
449   interpretation: [
450     [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
451         (s, args, t)
452     ]
453   ];
454   
455   include_command: [ [
456       IDENT "include" ; path = QSTRING -> 
457         loc,path,LexiconAst.WithPreferences
458     | IDENT "include'" ; path = QSTRING -> 
459         loc,path,LexiconAst.WithoutPreferences
460    ]];
461
462   grafite_command: [ [
463       IDENT "set"; n = QSTRING; v = QSTRING ->
464         GrafiteAst.Set (loc, n, v)
465     | IDENT "drop" -> GrafiteAst.Drop loc
466     | IDENT "qed" -> GrafiteAst.Qed loc
467     | IDENT "variant" ; name = IDENT; SYMBOL ":"; 
468       typ = term; SYMBOL <:unicode<def>> ; newname = IDENT ->
469         GrafiteAst.Obj (loc, 
470           Ast.Theorem 
471             (`Variant,name,typ,Some (Ast.Ident (newname, None))))
472     | flavour = theorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
473       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
474         GrafiteAst.Obj (loc, Ast.Theorem (flavour, name, typ, body))
475     | flavour = theorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
476       body = term ->
477         GrafiteAst.Obj (loc,
478           Ast.Theorem (flavour, name, Ast.Implicit, Some body))
479     | IDENT "axiom"; name = IDENT; SYMBOL ":"; typ = term ->
480         GrafiteAst.Obj (loc, Ast.Theorem (`Axiom, name, typ, None))
481     | "let"; ind_kind = [ "corec" -> `CoInductive | "rec"-> `Inductive ];
482         defs = CicNotationParser.let_defs -> 
483           let name,ty = 
484             match defs with
485             | ((Ast.Ident (name, None), Some ty),_,_) :: _ -> name,ty
486             | ((Ast.Ident (name, None), None),_,_) :: _ ->
487                 name, Ast.Implicit
488             | _ -> assert false 
489           in
490           let body = Ast.Ident (name,None) in
491           GrafiteAst.Obj (loc, Ast.Theorem(`Definition, name, ty,
492             Some (Ast.LetRec (ind_kind, defs, body))))
493     | IDENT "inductive"; spec = inductive_spec ->
494         let (params, ind_types) = spec in
495         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
496     | IDENT "coinductive"; spec = inductive_spec ->
497         let (params, ind_types) = spec in
498         let ind_types = (* set inductive flags to false (coinductive) *)
499           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
500             ind_types
501         in
502         GrafiteAst.Obj (loc, Ast.Inductive (params, ind_types))
503     | IDENT "coercion" ; suri = URI ->
504         GrafiteAst.Coercion (loc, UriManager.uri_of_string suri, true)
505     | IDENT "record" ; (params,name,ty,fields) = record_spec ->
506         GrafiteAst.Obj (loc, Ast.Record (params,name,ty,fields))
507     | IDENT "default" ; what = QSTRING ; uris = LIST1 URI ->
508        let uris = List.map UriManager.uri_of_string uris in
509         GrafiteAst.Default (loc,what,uris)
510   ]];
511   lexicon_command: [ [
512       IDENT "alias" ; spec = alias_spec ->
513         LexiconAst.Alias (loc, spec)
514     | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
515         LexiconAst.Notation (loc, dir, l1, assoc, prec, l2)
516     | IDENT "interpretation"; id = QSTRING;
517       (symbol, args, l3) = interpretation ->
518         LexiconAst.Interpretation (loc, id, (symbol, args), l3)
519   ]];
520   executable: [
521     [ cmd = grafite_command; SYMBOL "." -> GrafiteAst.Command (loc, cmd)
522     | tac = tactical; punct = punctuation_tactical ->
523         GrafiteAst.Tactical (loc, tac, Some punct)
524     | punct = punctuation_tactical -> GrafiteAst.Tactical (loc, punct, None)
525     | mac = macro; SYMBOL "." -> GrafiteAst.Macro (loc, mac)
526     ]
527   ];
528   comment: [
529     [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT -> 
530        GrafiteAst.Code (loc, ex)
531     | str = NOTE -> 
532        GrafiteAst.Note (loc, str)
533     ]
534   ];
535   statement: [
536     [ ex = executable ->
537        fun ~include_paths status -> status,LSome(GrafiteAst.Executable (loc,ex))
538     | com = comment ->
539        fun ~include_paths status -> status,LSome (GrafiteAst.Comment (loc, com))
540     | (iloc,fname,mode) = include_command ; SYMBOL "."  ->
541        fun ~include_paths status ->
542         let path = DependenciesParser.baseuri_of_script ~include_paths fname in
543         let status =
544          LexiconEngine.eval_command status (LexiconAst.Include (iloc,path,mode))
545         in
546          status,
547           LSome
548           (GrafiteAst.Executable
549            (loc,GrafiteAst.Command
550             (loc,GrafiteAst.Include (iloc,path))))
551     | scom = lexicon_command ; SYMBOL "." ->
552        fun ~include_paths status ->
553         let status = LexiconEngine.eval_command status scom in
554          status,LNone loc
555     | EOI -> raise End_of_file
556     ]
557   ];
558 END
559
560 let exc_located_wrapper f =
561   try
562     f ()
563   with
564   | Stdpp.Exc_located (_, End_of_file) -> raise End_of_file
565   | Stdpp.Exc_located (floc, Stream.Error msg) ->
566       raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
567   | Stdpp.Exc_located (floc, exn) ->
568       raise
569        (HExtlib.Localized (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
570
571 let parse_statement lexbuf =
572   exc_located_wrapper
573     (fun () -> (Grammar.Entry.parse statement (Obj.magic lexbuf)))