]> matita.cs.unibo.it Git - helm.git/blob - matita/components/grafite_parser/grafiteParser.ml
nAuto --> nnAuto
[helm.git] / matita / 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 module N  = CicNotationPt
29 module G  = GrafiteAst
30 module L  = LexiconAst
31 module LE = LexiconEngine
32
33 exception NoInclusionPerformed of string (* full path *)
34
35 type 'a localized_option =
36    LSome of 'a
37  | LNone of G.loc
38
39 type ast_statement =
40   (N.term, N.term, N.term G.reduction, N.term N.obj, string) G.statement
41
42 type 'status statement =
43   ?never_include:bool -> 
44     (* do not call LexiconEngine to do includes, always raise NoInclusionPerformed *) 
45   include_paths:string list -> (#LE.status as 'status) ->
46     'status * ast_statement localized_option
47
48 type 'status parser_status = {
49   grammar : Grammar.g;
50   term : N.term Grammar.Entry.e;
51   statement : #LE.status as 'status statement Grammar.Entry.e;
52 }
53
54 let grafite_callback = ref (fun _ -> ())
55 let set_grafite_callback cb = grafite_callback := cb
56
57 let lexicon_callback = ref (fun _ -> ())
58 let set_lexicon_callback cb = lexicon_callback := cb
59
60 let initial_parser () = 
61   let grammar = CicNotationParser.level2_ast_grammar () in
62   let term = CicNotationParser.term () in
63   let statement = Grammar.Entry.create grammar "statement" in
64   { grammar = grammar; term = term; statement = statement }
65 ;;
66
67 let grafite_parser = ref (initial_parser ())
68
69 let add_raw_attribute ~text t = N.AttributedTerm (`Raw text, t)
70
71 let default_associativity = Gramext.NonA
72         
73 let mk_rec_corec ind_kind defs loc = 
74  (* In case of mutual definitions here we produce just
75     the syntax tree for the first one. The others will be
76     generated from the completely specified term just before
77     insertion in the environment. We use the flavour
78     `MutualDefinition to rememer this. *)
79   let name,ty = 
80     match defs with
81     | (params,(N.Ident (name, None), ty),_,_) :: _ ->
82         let ty = match ty with Some ty -> ty | None -> N.Implicit `JustOne in
83         let ty =
84          List.fold_right
85           (fun var ty -> N.Binder (`Pi,var,ty)
86           ) params ty
87         in
88          name,ty
89     | _ -> assert false 
90   in
91   let body = N.Ident (name,None) in
92   let flavour =
93    if List.length defs = 1 then
94     `Definition
95    else
96     `MutualDefinition
97   in
98    (loc, N.Theorem(flavour, name, ty, Some (N.LetRec (ind_kind, defs, body)), `Regular))
99
100 let nmk_rec_corec ind_kind defs loc = 
101  let loc,t = mk_rec_corec ind_kind defs loc in
102   G.NObj (loc,t)
103
104 let mk_rec_corec ind_kind defs loc = 
105  let loc,t = mk_rec_corec ind_kind defs loc in
106   G.Obj (loc,t)
107
108 let npunct_of_punct = function
109   | G.Branch loc -> G.NBranch loc
110   | G.Shift loc -> G.NShift loc
111   | G.Pos (loc, i) -> G.NPos (loc, i)
112   | G.Wildcard loc -> G.NWildcard loc
113   | G.Merge loc -> G.NMerge loc
114   | G.Semicolon loc -> G.NSemicolon loc
115   | G.Dot loc -> G.NDot loc
116 ;;
117 let nnon_punct_of_punct = function
118   | G.Skip loc -> G.NSkip loc
119   | G.Unfocus loc -> G.NUnfocus loc
120   | G.Focus (loc,l) -> G.NFocus (loc,l)
121 ;;
122 let npunct_of_punct = function
123   | G.Branch loc -> G.NBranch loc
124   | G.Shift loc -> G.NShift loc
125   | G.Pos (loc, i) -> G.NPos (loc, i)
126   | G.Wildcard loc -> G.NWildcard loc
127   | G.Merge loc -> G.NMerge loc
128   | G.Semicolon loc -> G.NSemicolon loc
129   | G.Dot loc -> G.NDot loc
130 ;;
131 let cons_ntac t p = 
132   match t with
133   | G.NTactic(loc,[t]) -> G.NTactic(loc,[t;p])
134   | x -> x
135 ;;
136
137 type by_continuation =
138    BYC_done
139  | BYC_weproved of N.term * string option * N.term option
140  | BYC_letsuchthat of string * N.term * string * N.term
141  | BYC_wehaveand of string * N.term * string * N.term
142
143 let initialize_parser () =
144   (* {{{ parser initialization *)
145   let term = !grafite_parser.term in
146   let statement = !grafite_parser.statement in
147   let let_defs = CicNotationParser.let_defs () in
148   let protected_binder_vars = CicNotationParser.protected_binder_vars () in
149 EXTEND
150   GLOBAL: term statement;
151   constructor: [ [ name = IDENT; SYMBOL ":"; typ = term -> (name, typ) ] ];
152   tactic_term: [ [ t = term LEVEL "90" -> t ] ];
153   new_name: [
154     [ SYMBOL "_" -> None
155     | id = IDENT -> Some id ]
156     ];
157   ident_list0: [ [ LPAREN; idents = LIST0 new_name; RPAREN -> idents ] ];
158   ident_list1: [ [ LPAREN; idents = LIST1 IDENT; RPAREN -> idents ] ];
159   tactic_term_list1: [
160     [ tactic_terms = LIST1 tactic_term SEP SYMBOL "," -> tactic_terms ]
161   ];
162   reduction_kind: [
163     [ IDENT "normalize" -> `Normalize
164     | IDENT "simplify" -> `Simpl
165     | IDENT "unfold"; t = OPT tactic_term -> `Unfold t
166     | IDENT "whd" -> `Whd ]
167   ];
168   nreduction_kind: [
169     [ IDENT "nnormalize" ; delta = OPT [ IDENT "nodelta" -> () ] ->
170        let delta = match delta with None -> true | _ -> false in
171         `Normalize delta
172     (*| IDENT "unfold"; t = OPT tactic_term -> `Unfold t*)
173     | IDENT "nwhd" ; delta = OPT [ IDENT "nodelta" -> () ] ->
174        let delta = match delta with None -> true | _ -> false in
175         `Whd delta]
176   ];
177   sequent_pattern_spec: [
178    [ hyp_paths =
179       LIST0
180        [ id = IDENT ;
181          path = OPT [SYMBOL ":" ; path = tactic_term -> path ] ->
182          (id,match path with Some p -> p | None -> N.UserInput) ];
183      goal_path = OPT [ SYMBOL <:unicode<vdash>>; term = tactic_term -> term ] ->
184       let goal_path =
185        match goal_path, hyp_paths with
186           None, [] -> Some N.UserInput
187         | None, _::_ -> None
188         | Some goal_path, _ -> Some goal_path
189       in
190        hyp_paths,goal_path
191    ]
192   ];
193   pattern_spec: [
194     [ res = OPT [
195        "in";
196        wanted_and_sps =
197         [ "match" ; wanted = tactic_term ;
198           sps = OPT [ "in"; sps = sequent_pattern_spec -> sps ] ->
199            Some wanted,sps
200         | sps = sequent_pattern_spec ->
201            None,Some sps
202         ] ->
203          let wanted,hyp_paths,goal_path =
204           match wanted_and_sps with
205              wanted,None -> wanted, [], Some N.UserInput
206            | wanted,Some (hyp_paths,goal_path) -> wanted,hyp_paths,goal_path
207          in
208           wanted, hyp_paths, goal_path ] ->
209       match res with
210          None -> None,[],Some N.UserInput
211        | Some ps -> ps]
212   ];
213   inverter_param_list: [ 
214     [ params = tactic_term -> 
215       let deannotate = function
216         | N.AttributedTerm (_,t) | t -> t
217       in match deannotate params with
218       | N.Implicit _ -> [false]
219       | N.UserInput -> [true]
220       | N.Appl l -> 
221          List.map (fun x -> match deannotate x with  
222            | N.Implicit _ -> false
223            | N.UserInput -> true
224            | _ -> raise (Invalid_argument "malformed target parameter list 1")) l
225       | _ -> raise (Invalid_argument ("malformed target parameter list 2\n" ^ CicNotationPp.pp_term params)) ]
226   ];
227   direction: [
228     [ SYMBOL ">" -> `LeftToRight
229     | SYMBOL "<" -> `RightToLeft ]
230   ];
231   int: [ [ num = NUMBER -> int_of_string num ] ];
232   intros_names: [
233    [ idents = OPT ident_list0 ->
234       match idents with None -> [] | Some idents -> idents
235    ]
236   ];
237   intros_spec: [
238     [ OPT [ IDENT "names" ]; 
239       num = OPT [ num = int -> num ]; 
240       idents = intros_names ->
241         num, idents
242     ]
243   ];
244   using: [ [ using = OPT [ IDENT "using"; t = tactic_term -> t ] -> using ] ];
245   ntactic: [
246     [ IDENT "napply"; t = tactic_term -> G.NTactic(loc,[G.NApply (loc, t)])
247     | IDENT "napplyS"; t = tactic_term -> G.NTactic(loc,[G.NSmartApply(loc, t)])
248     | IDENT "nassert";
249        seqs = LIST0 [
250         hyps = LIST0
251          [ id = IDENT ; SYMBOL ":" ; ty = tactic_term -> id,`Decl ty
252          | id = IDENT ; SYMBOL ":" ; ty = tactic_term ;
253                         SYMBOL <:unicode<def>> ; bo = tactic_term ->
254             id,`Def (bo,ty)];
255         SYMBOL <:unicode<vdash>>;
256         concl = tactic_term -> (List.rev hyps,concl) ] ->
257          G.NTactic(loc,[G.NAssert (loc, seqs)])
258     | IDENT "nauto"; params = auto_params -> 
259         G.NTactic(loc,[G.NAuto (loc, params)])
260     | SYMBOL "/"; num = OPT NUMBER ; 
261        params = nauto_params; SYMBOL "/" ; 
262        just = OPT [ IDENT "by"; by = 
263          [ univ = tactic_term_list1 -> `Univ univ
264          | SYMBOL "{"; SYMBOL "}" -> `EmptyUniv
265          | SYMBOL "_" -> `Trace ] -> by ] ->
266        let depth = match num with Some n -> n | None -> "1" in
267        (match just with
268        | None -> 
269            G.NTactic(loc,
270             [G.NAuto(loc,(None,["slir","";"depth",depth]@params))])
271        | Some (`Univ univ) ->
272            G.NTactic(loc,
273             [G.NAuto(loc,(Some univ,["slir","";"depth",depth]@params))])
274        | Some `EmptyUniv ->
275            G.NTactic(loc,
276             [G.NAuto(loc,(Some [],["slir","";"depth",depth]@params))])
277        | Some `Trace ->
278            G.NMacro(loc,
279              G.NAutoInteractive (loc, (None,["slir","";"depth",depth]@params))))
280     | IDENT "nintros" -> G.NMacro (loc, G.NIntroGuess loc)
281     | IDENT "ncheck"; t = term -> G.NMacro(loc,G.NCheck (loc,t))
282     | IDENT "screenshot"; fname = QSTRING -> 
283         G.NMacro(loc,G.Screenshot (loc, fname))
284     | IDENT "ncases"; what = tactic_term ; where = pattern_spec ->
285         G.NTactic(loc,[G.NCases (loc, what, where)])
286     | IDENT "nchange"; what = pattern_spec; "with"; with_what = tactic_term -> 
287         G.NTactic(loc,[G.NChange (loc, what, with_what)])
288     | SYMBOL "@"; num = OPT NUMBER; l = LIST0 tactic_term -> 
289         G.NTactic(loc,[G.NConstructor (loc, (match num with None -> None | Some x -> Some (int_of_string x)),l)])
290     | IDENT "ncut"; t = tactic_term -> G.NTactic(loc,[G.NCut (loc, t)])
291 (*  | IDENT "ndiscriminate"; t = tactic_term -> G.NDiscriminate (loc, t)
292     | IDENT "nsubst"; t = tactic_term -> G.NSubst (loc, t) *)
293     | IDENT "ndestruct"; just = OPT [ dom = ident_list1 -> dom ];
294       exclude = OPT [ IDENT "skip"; skip = ident_list1 -> skip ]
295         -> let exclude' = match exclude with None -> [] | Some l -> l in
296            G.NTactic(loc,[G.NDestruct (loc,just,exclude')])
297     | IDENT "nelim"; what = tactic_term ; where = pattern_spec ->
298         G.NTactic(loc,[G.NElim (loc, what, where)])
299     | IDENT "ngeneralize"; p=pattern_spec ->
300         G.NTactic(loc,[G.NGeneralize (loc, p)])
301     | IDENT "ninversion"; what = tactic_term ; where = pattern_spec ->
302         G.NTactic(loc,[G.NInversion (loc, what, where)])
303     | IDENT "nlapply"; t = tactic_term -> G.NTactic(loc,[G.NLApply (loc, t)])
304     | IDENT "nletin"; name = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term;
305         where = pattern_spec ->
306         G.NTactic(loc,[G.NLetIn (loc,where,t,name)])
307     | kind = nreduction_kind; p = pattern_spec ->
308         G.NTactic(loc,[G.NReduce (loc, kind, p)])
309     | IDENT "nrewrite"; dir = direction; what = tactic_term ; where = pattern_spec ->   
310         G.NTactic(loc,[G.NRewrite (loc, dir, what, where)])
311     | IDENT "ntry"; tac = SELF -> 
312         let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
313         G.NTactic(loc,[ G.NTry (loc,tac)])
314     | IDENT "nrepeat"; tac = SELF -> 
315         let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
316         G.NTactic(loc,[ G.NRepeat (loc,tac)])
317     | LPAREN; l = LIST1 SELF; RPAREN -> 
318         let l = 
319           List.flatten 
320             (List.map (function G.NTactic(_,t) -> t | _ -> assert false) l) in
321         G.NTactic(loc,[G.NBlock (loc,l)])
322     | IDENT "nassumption" -> G.NTactic(loc,[ G.NAssumption loc])
323     | SYMBOL "#"; ns=LIST0 IDENT -> G.NTactic(loc,[ G.NIntros (loc,ns)])
324     | SYMBOL "#"; SYMBOL "_" -> G.NTactic(loc,[ G.NIntro (loc,"_")])
325     | SYMBOL "*" -> G.NTactic(loc,[ G.NCase1 (loc,"_")])
326     | SYMBOL "*"; n=IDENT -> G.NTactic(loc,[ G.NCase1 (loc,n)])
327     ]
328   ];
329   tactic: [
330     [ IDENT "absurd"; t = tactic_term ->
331         G.Absurd (loc, t)
332     | IDENT "apply"; IDENT "rule"; t = tactic_term ->
333         G.ApplyRule (loc, t)
334     | IDENT "apply"; t = tactic_term ->
335         G.Apply (loc, t)
336     | IDENT "applyP"; t = tactic_term ->
337         G.ApplyP (loc, t)
338     | IDENT "applyS"; t = tactic_term ; params = auto_params ->
339         G.ApplyS (loc, t, params)
340     | IDENT "assumption" ->
341         G.Assumption loc
342     | IDENT "autobatch";  params = auto_params ->
343         G.AutoBatch (loc,params)
344     | IDENT "cases"; what = tactic_term;
345       pattern = OPT pattern_spec;
346       specs = intros_spec ->
347         let pattern = match pattern with
348            | None         -> None, [], Some N.UserInput
349            | Some pattern -> pattern   
350         in
351         G.Cases (loc, what, pattern, specs)
352     | IDENT "clear"; ids = LIST1 IDENT ->
353         G.Clear (loc, ids)
354     | IDENT "clearbody"; id = IDENT ->
355         G.ClearBody (loc,id)
356     | IDENT "change"; what = pattern_spec; "with"; t = tactic_term ->
357         G.Change (loc, what, t)
358     | IDENT "compose"; times = OPT int; t1 = tactic_term; t2 = 
359       OPT [ "with"; t = tactic_term -> t ]; specs = intros_spec ->
360         let times = match times with None -> 1 | Some i -> i in
361         G.Compose (loc, t1, t2, times, specs)
362     | IDENT "constructor"; n = int ->
363         G.Constructor (loc, n)
364     | IDENT "contradiction" ->
365         G.Contradiction loc
366     | IDENT "cut"; t = tactic_term; ident = OPT [ "as"; id = IDENT -> id] ->
367         G.Cut (loc, ident, t)
368     | IDENT "decompose"; idents = OPT [ "as"; idents = LIST1 new_name -> idents ] ->
369         let idents = match idents with None -> [] | Some idents -> idents in
370         G.Decompose (loc, idents)
371     | IDENT "demodulate"; p = auto_params -> G.Demodulate (loc, p)
372     | IDENT "destruct"; xts = OPT [ ts = tactic_term_list1 -> ts ] ->
373         G.Destruct (loc, xts)
374     | IDENT "elim"; what = tactic_term; using = using; 
375        pattern = OPT pattern_spec;
376        ispecs = intros_spec ->
377         let pattern = match pattern with
378            | None         -> None, [], Some N.UserInput
379            | Some pattern -> pattern   
380           in
381           G.Elim (loc, what, using, pattern, ispecs)
382     | IDENT "elimType"; what = tactic_term; using = using;
383       (num, idents) = intros_spec ->
384         G.ElimType (loc, what, using, (num, idents))
385     | IDENT "exact"; t = tactic_term ->
386         G.Exact (loc, t)
387     | IDENT "exists" ->
388         G.Exists loc
389     | IDENT "fail" -> G.Fail loc
390     | IDENT "fold"; kind = reduction_kind; t = tactic_term; p = pattern_spec ->
391         let (pt,_,_) = p in
392           if pt <> None then
393             raise (HExtlib.Localized (loc, CicNotationParser.Parse_error
394               ("the pattern cannot specify the term to replace, only its"
395               ^ " paths in the hypotheses and in the conclusion")))
396        else
397          G.Fold (loc, kind, t, p)
398     | IDENT "fourier" ->
399         G.Fourier loc
400     | IDENT "fwd"; hyp = IDENT; idents = OPT [ "as"; idents = LIST1 new_name -> idents ] ->
401         let idents = match idents with None -> [] | Some idents -> idents in
402         G.FwdSimpl (loc, hyp, idents)
403     | IDENT "generalize"; p=pattern_spec; id = OPT ["as" ; id = IDENT -> id] ->
404        G.Generalize (loc,p,id)
405     | IDENT "id" -> G.IdTac loc
406     | IDENT "intro"; ident = OPT IDENT ->
407         let idents = match ident with None -> [] | Some id -> [Some id] in
408         G.Intros (loc, (Some 1, idents))
409     | IDENT "intros"; specs = intros_spec ->
410         G.Intros (loc, specs)
411     | IDENT "inversion"; t = tactic_term ->
412         G.Inversion (loc, t)
413     | IDENT "lapply"; 
414       linear = OPT [ IDENT "linear" ];
415       depth = OPT [ IDENT "depth"; SYMBOL "="; i = int -> i ];
416       what = tactic_term; 
417       to_what = OPT [ "to" ; t = tactic_term_list1 -> t ];
418       ident = OPT [ "as" ; ident = IDENT -> ident ] ->
419         let linear = match linear with None -> false | Some _ -> true in 
420         let to_what = match to_what with None -> [] | Some to_what -> to_what in
421         G.LApply (loc, linear, depth, to_what, what, ident)
422     | IDENT "left" -> G.Left loc
423     | IDENT "letin"; where = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term ->
424         G.LetIn (loc, t, where)
425     | kind = reduction_kind; p = pattern_spec ->
426         G.Reduce (loc, kind, p)
427     | IDENT "reflexivity" ->
428         G.Reflexivity loc
429     | IDENT "replace"; p = pattern_spec; "with"; t = tactic_term ->
430         G.Replace (loc, p, t)
431     | IDENT "rewrite" ; d = direction; t = tactic_term ; p = pattern_spec;
432        xnames = OPT [ "as"; n = ident_list0 -> n ] ->
433        let (pt,_,_) = p in
434         if pt <> None then
435          raise
436           (HExtlib.Localized (loc,
437            (CicNotationParser.Parse_error
438             "the pattern cannot specify the term to rewrite, only its paths in the hypotheses and in the conclusion")))
439         else
440          let n = match xnames with None -> [] | Some names -> names in 
441          G.Rewrite (loc, d, t, p, n)
442     | IDENT "right" ->
443         G.Right loc
444     | IDENT "ring" ->
445         G.Ring loc
446     | IDENT "split" ->
447         G.Split loc
448     | IDENT "symmetry" ->
449         G.Symmetry loc
450     | IDENT "transitivity"; t = tactic_term ->
451         G.Transitivity (loc, t)
452      (* Produzioni Aggiunte *)
453     | IDENT "assume" ; id = IDENT ; SYMBOL ":" ; t = tactic_term ->
454         G.Assume (loc, id, t)
455     | IDENT "suppose" ; t = tactic_term ; LPAREN ; id = IDENT ; RPAREN ; 
456       t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; 
457                 t' = tactic_term -> t']->
458         G.Suppose (loc, t, id, t1)
459     | "let" ; id1 = IDENT ; SYMBOL ":" ; t1 = tactic_term ;
460       IDENT "such" ; IDENT "that" ; t2=tactic_term ; LPAREN ; 
461       id2 = IDENT ; RPAREN -> 
462         G.ExistsElim (loc, `Auto (None,[]), id1, t1, id2, t2)
463     | just =
464        [ IDENT "using"; t=tactic_term -> `Term t
465        | params = auto_params -> `Auto params] ;
466       cont=by_continuation ->
467        (match cont with
468            BYC_done -> G.Bydone (loc, just)
469          | BYC_weproved (ty,id,t1) ->
470             G.By_just_we_proved(loc, just, ty, id, t1)
471          | BYC_letsuchthat (id1,t1,id2,t2) ->
472             G.ExistsElim (loc, just, id1, t1, id2, t2)
473          | BYC_wehaveand (id1,t1,id2,t2) ->
474             G.AndElim (loc, just, id1, t1, id2, t2))
475     | IDENT "we" ; IDENT "need" ; "to" ; IDENT "prove" ; t = tactic_term ; id = OPT [ LPAREN ; id = IDENT ; RPAREN -> id ] ; t1 = OPT [IDENT "or" ; IDENT "equivalently"; t' = tactic_term -> t']->
476         G.We_need_to_prove (loc, t, id, t1)
477     | IDENT "we" ; IDENT "proceed" ; IDENT "by" ; IDENT "cases" ; "on" ; t=tactic_term ; "to" ; IDENT "prove" ; t1=tactic_term ->  
478         G.We_proceed_by_cases_on (loc, t, t1)
479     | IDENT "we" ; IDENT "proceed" ; IDENT "by" ; IDENT "induction" ; "on" ; t=tactic_term ; "to" ; IDENT "prove" ; t1=tactic_term ->  
480         G.We_proceed_by_induction_on (loc, t, t1)
481     | IDENT "by" ; IDENT "induction" ; IDENT "hypothesis" ; IDENT "we" ; IDENT "know" ; t=tactic_term ; LPAREN ; id = IDENT ; RPAREN ->
482         G.Byinduction(loc, t, id)
483     | IDENT "the" ; IDENT "thesis" ; IDENT "becomes" ; t=tactic_term ->
484         G.Thesisbecomes(loc, t)
485     | IDENT "case" ; id = IDENT ; params=LIST0[LPAREN ; i=IDENT ;
486         SYMBOL":" ; t=tactic_term ; RPAREN -> i,t] ->
487          G.Case(loc,id,params)
488       (* DO NOT FACTORIZE with the two following, camlp5 sucks*)
489     | IDENT "conclude"; 
490       termine = tactic_term;
491       SYMBOL "=" ;
492       t1=tactic_term ;
493       t2 =
494        [ IDENT "using"; t=tactic_term -> `Term t
495        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
496        | IDENT "proof" -> `Proof
497        | params = auto_params -> `Auto params];
498       cont = rewriting_step_continuation ->
499        G.RewritingStep(loc, Some (None,termine), t1, t2, cont)
500     | IDENT "obtain" ; name = IDENT;
501       termine = tactic_term;
502       SYMBOL "=" ;
503       t1=tactic_term ;
504       t2 =
505        [ IDENT "using"; t=tactic_term -> `Term t
506        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
507        | IDENT "proof" -> `Proof
508        | params = auto_params -> `Auto params];
509       cont = rewriting_step_continuation ->
510        G.RewritingStep(loc, Some (Some name,termine), t1, t2, cont)
511     | SYMBOL "=" ;
512       t1=tactic_term ;
513       t2 =
514        [ IDENT "using"; t=tactic_term -> `Term t
515        | IDENT "using"; IDENT "once"; term=tactic_term -> `SolveWith term
516        | IDENT "proof" -> `Proof
517        | params = auto_params -> `Auto params];
518       cont = rewriting_step_continuation ->
519        G.RewritingStep(loc, None, t1, t2, cont)
520   ]
521 ];
522   auto_fixed_param: [
523    [ IDENT "demod"
524    | IDENT "fast_paramod"
525    | IDENT "paramod"
526    | IDENT "depth"
527    | IDENT "width"
528    | IDENT "size"
529    | IDENT "timeout"
530    | IDENT "library"
531    | IDENT "type"
532    | IDENT "all"
533    ]
534 ];
535   auto_params: [
536     [ params = 
537       LIST0 [
538          i = auto_fixed_param -> i,""
539        | i = auto_fixed_param ; SYMBOL "="; v = [ v = int ->
540               string_of_int v | v = IDENT -> v ] -> i,v ]; 
541       tl = OPT [ IDENT "by"; tl = tactic_term_list1 -> tl] -> tl,
542       (* (match tl with Some l -> l | None -> []), *)
543       params
544    ]
545 ];
546   nauto_params: [
547     [ params = 
548       LIST0 [
549          i = auto_fixed_param -> i,""
550        | i = auto_fixed_param ; SYMBOL "="; v = [ v = int ->
551               string_of_int v | v = IDENT -> v ] -> i,v ] ->
552       params
553    ]
554 ];
555
556   inline_params:[
557    [ params = LIST0 
558       [ IDENT "prefix"; SYMBOL "="; prefix = QSTRING -> G.IPPrefix prefix  
559       | flavour = inline_flavour -> G.IPAs flavour
560       | IDENT "coercions" -> G.IPCoercions
561       | IDENT "debug"; SYMBOL "="; debug = int -> G.IPDebug debug 
562       | IDENT "procedural" -> G.IPProcedural
563       | IDENT "nodefaults" -> G.IPNoDefaults
564       | IDENT "depth"; SYMBOL "="; depth = int -> G.IPDepth depth 
565       | IDENT "level"; SYMBOL "="; level = int -> G.IPLevel level 
566       | IDENT "comments" -> G.IPComments
567       | IDENT "cr" -> G.IPCR
568       ] -> params
569    ]
570 ];
571   by_continuation: [
572     [ WEPROVED; ty = tactic_term ; LPAREN ; id = IDENT ; RPAREN ; t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; t2 = tactic_term -> t2] -> BYC_weproved (ty,Some id,t1)
573     | WEPROVED; ty = tactic_term ; t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; t2 = tactic_term -> t2] ; 
574             "done" -> BYC_weproved (ty,None,t1)
575     | "done" -> BYC_done
576     | "let" ; id1 = IDENT ; SYMBOL ":" ; t1 = tactic_term ;
577       IDENT "such" ; IDENT "that" ; t2=tactic_term ; LPAREN ; 
578       id2 = IDENT ; RPAREN -> BYC_letsuchthat (id1,t1,id2,t2)
579     | WEHAVE; t1=tactic_term ; LPAREN ; id1=IDENT ; RPAREN ;"and" ; t2=tactic_term ; LPAREN ; id2=IDENT ; RPAREN ->
580               BYC_wehaveand (id1,t1,id2,t2)
581     ]
582 ];
583   rewriting_step_continuation : [
584     [ "done" -> true
585     | -> false
586     ]
587 ];
588   atomic_tactical:
589     [ "sequence" LEFTA
590       [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
591           let ts =
592             match t1 with
593             | G.Seq (_, l) -> l @ [ t2 ]
594             | _ -> [ t1; t2 ]
595           in
596           G.Seq (loc, ts)
597       ]
598     | "then" NONA
599       [ tac = SELF; SYMBOL ";";
600         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
601           (G.Then (loc, tac, tacs))
602       ]
603     | "loops" RIGHTA
604       [ IDENT "do"; count = int; tac = SELF ->
605           G.Do (loc, count, tac)
606       | IDENT "repeat"; tac = SELF -> G.Repeat (loc, tac)
607       ]
608     | "simple" NONA
609       [ IDENT "first";
610         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
611           G.First (loc, tacs)
612       | IDENT "try"; tac = SELF -> G.Try (loc, tac)
613       | IDENT "solve";
614         SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
615           G.Solve (loc, tacs)
616       | IDENT "progress"; tac = SELF -> G.Progress (loc, tac)
617       | LPAREN; tac = SELF; RPAREN -> tac
618       | tac = tactic -> tac
619         ]
620       ];
621   npunctuation_tactical:
622     [
623       [ SYMBOL "[" -> G.NBranch loc
624       | SYMBOL "|" -> G.NShift loc
625       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> G.NPos (loc, i)
626       | SYMBOL "*"; SYMBOL ":" -> G.NWildcard loc
627       | name = IDENT; SYMBOL ":" -> G.NPosbyname (loc, name)
628       | SYMBOL "]" -> G.NMerge loc
629       | SYMBOL ";" -> G.NSemicolon loc
630       | SYMBOL "." -> G.NDot loc
631       ]
632     ];
633   punctuation_tactical:
634     [
635       [ SYMBOL "[" -> G.Branch loc
636       | SYMBOL "|" -> G.Shift loc
637       | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> G.Pos (loc, i)
638       | SYMBOL "*"; SYMBOL ":" -> G.Wildcard loc
639       | SYMBOL "]" -> G.Merge loc
640       | SYMBOL ";" -> G.Semicolon loc
641       | SYMBOL "." -> G.Dot loc
642       ]
643     ];
644   non_punctuation_tactical:
645     [ "simple" NONA
646       [ IDENT "focus"; goals = LIST1 int -> G.Focus (loc, goals)
647       | IDENT "unfocus" -> G.Unfocus loc
648       | IDENT "skip" -> G.Skip loc
649       ]
650       ];
651   ntheorem_flavour: [
652     [ [ IDENT "ndefinition"  ] -> `Definition
653     | [ IDENT "nfact"        ] -> `Fact
654     | [ IDENT "nlemma"       ] -> `Lemma
655     | [ IDENT "nremark"      ] -> `Remark
656     | [ IDENT "ntheorem"     ] -> `Theorem
657     ]
658   ];
659   theorem_flavour: [
660     [ [ IDENT "definition"  ] -> `Definition
661     | [ IDENT "fact"        ] -> `Fact
662     | [ IDENT "lemma"       ] -> `Lemma
663     | [ IDENT "remark"      ] -> `Remark
664     | [ IDENT "theorem"     ] -> `Theorem
665     ]
666   ];
667   inline_flavour: [
668      [ attr = theorem_flavour -> attr
669      | [ IDENT "axiom"     ]  -> `Axiom
670      | [ IDENT "variant"   ]  -> `Variant
671      ]
672   ];
673   inductive_spec: [ [
674     fst_name = IDENT; 
675       params = LIST0 protected_binder_vars;
676     SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
677     fst_constructors = LIST0 constructor SEP SYMBOL "|";
678     tl = OPT [ "with";
679         types = LIST1 [
680           name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
681          OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
682             (name, true, typ, constructors) ] SEP "with" -> types
683       ] ->
684         let params =
685           List.fold_right
686             (fun (names, typ) acc ->
687               (List.map (fun name -> (name, typ)) names) @ acc)
688             params []
689         in
690         let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
691         let tl_ind_types = match tl with None -> [] | Some types -> types in
692         let ind_types = fst_ind_type :: tl_ind_types in
693         (params, ind_types)
694     ] ];
695     
696     record_spec: [ [
697       name = IDENT; 
698       params = LIST0 protected_binder_vars;
699        SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ; 
700        fields = LIST0 [ 
701          name = IDENT ; 
702          coercion = [ 
703              SYMBOL ":" -> false,0 
704            | SYMBOL ":"; SYMBOL ">" -> true,0
705            | SYMBOL ":"; arity = int ; SYMBOL ">" -> true,arity
706          ]; 
707          ty = term -> 
708            let b,n = coercion in 
709            (name,ty,b,n) 
710        ] SEP SYMBOL ";"; SYMBOL "}" -> 
711         let params =
712           List.fold_right
713             (fun (names, typ) acc ->
714               (List.map (fun name -> (name, typ)) names) @ acc)
715             params []
716         in
717         (params,name,typ,fields)
718     ] ];
719
720     macro: [
721       [ [ IDENT "check"   ]; t = term ->
722           G.Check (loc, t)
723       | [ IDENT "eval" ]; kind = reduction_kind; "on"; t = tactic_term ->
724           G.Eval (loc, kind, t)
725       | IDENT "inline"; suri = QSTRING; params = inline_params -> 
726            G.Inline (loc, suri, params)
727       | [ IDENT "hint" ]; rew = OPT (IDENT "rewrite")  -> 
728            if rew = None then G.Hint (loc, false) else G.Hint (loc,true)
729       | IDENT "auto"; params = auto_params ->
730           G.AutoInteractive (loc,params)
731       ]
732     ];
733     alias_spec: [
734       [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
735         let alpha = "[a-zA-Z]" in
736         let num = "[0-9]+" in
737         let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
738         let decoration = "\\'" in
739         let ident = "\\("^alpha^ident_cont^"*"^decoration^"*\\|_"^ident_cont^"+"^decoration^"*\\)" in
740         let rex = Str.regexp ("^"^ident^"$") in
741         if Str.string_match rex id 0 then
742           if (try ignore (UriManager.uri_of_string uri); true
743               with UriManager.IllFormedUri _ -> false) ||
744              (try ignore (NReference.reference_of_string uri); true
745               with NReference.IllFormedReference _ -> false)
746           then
747             L.Ident_alias (id, uri)
748           else
749             raise
750              (HExtlib.Localized (loc, CicNotationParser.Parse_error (Printf.sprintf "Not a valid uri: %s" uri)))
751         else
752           raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
753             Printf.sprintf "Not a valid identifier: %s" id)))
754       | IDENT "symbol"; symbol = QSTRING;
755         instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
756         SYMBOL "="; dsc = QSTRING ->
757           let instance =
758             match instance with Some i -> i | None -> 0
759           in
760           L.Symbol_alias (symbol, instance, dsc)
761       | IDENT "num";
762         instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
763         SYMBOL "="; dsc = QSTRING ->
764           let instance =
765             match instance with Some i -> i | None -> 0
766           in
767           L.Number_alias (instance, dsc)
768       ]
769      ];
770     argument: [
771       [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
772         id = IDENT ->
773           N.IdentArg (List.length l, id)
774       ]
775     ];
776     associativity: [
777       [ IDENT "left";  IDENT "associative" -> Gramext.LeftA
778       | IDENT "right"; IDENT "associative" -> Gramext.RightA
779       | IDENT "non"; IDENT "associative" -> Gramext.NonA
780       ]
781     ];
782     precedence: [
783       [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
784     ];
785     notation: [
786       [ dir = OPT direction; s = QSTRING;
787         assoc = OPT associativity; prec = precedence;
788         IDENT "for";
789         p2 = 
790           [ blob = UNPARSED_AST ->
791               add_raw_attribute ~text:(Printf.sprintf "@{%s}" blob)
792                 (CicNotationParser.parse_level2_ast
793                   (Ulexing.from_utf8_string blob))
794           | blob = UNPARSED_META ->
795               add_raw_attribute ~text:(Printf.sprintf "${%s}" blob)
796                 (CicNotationParser.parse_level2_meta
797                   (Ulexing.from_utf8_string blob))
798           ] ->
799             let assoc =
800               match assoc with
801               | None -> default_associativity
802               | Some assoc -> assoc
803             in
804             let p1 =
805               add_raw_attribute ~text:s
806                 (CicNotationParser.parse_level1_pattern prec
807                   (Ulexing.from_utf8_string s))
808             in
809             (dir, p1, assoc, prec, p2)
810       ]
811     ];
812     level3_term: [
813       [ u = URI -> N.UriPattern (UriManager.uri_of_string u)
814       | r = NREF -> N.NRefPattern (NReference.reference_of_string r)
815       | IMPLICIT -> N.ImplicitPattern
816       | id = IDENT -> N.VarPattern id
817       | LPAREN; terms = LIST1 SELF; RPAREN ->
818           (match terms with
819           | [] -> assert false
820           | [term] -> term
821           | terms -> N.ApplPattern terms)
822       ]
823     ];
824     interpretation: [
825       [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
826           (s, args, t)
827       ]
828     ];
829     
830     include_command: [ [
831         IDENT "include" ; path = QSTRING -> 
832           loc,path,true,L.WithPreferences
833       | IDENT "include" ; IDENT "source" ; path = QSTRING -> 
834           loc,path,false,L.WithPreferences        
835       | IDENT "include'" ; path = QSTRING -> 
836           loc,path,true,L.WithoutPreferences
837      ]];
838
839   grafite_ncommand: [ [
840       IDENT "nqed" -> G.NQed loc
841     | nflavour = ntheorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
842       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
843         G.NObj (loc, N.Theorem (nflavour, name, typ, body,`Regular))
844     | nflavour = ntheorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
845       body = term ->
846         G.NObj (loc, N.Theorem (nflavour, name, N.Implicit `JustOne, Some body,`Regular))
847     | IDENT "naxiom"; name = IDENT; SYMBOL ":"; typ = term ->
848         G.NObj (loc, N.Theorem (`Axiom, name, typ, None, `Regular))
849     | IDENT "ndiscriminator" ; indty = tactic_term -> G.NDiscriminator (loc,indty)
850     | IDENT "ninverter"; name = IDENT; IDENT "for" ; indty = tactic_term ;
851       paramspec = OPT inverter_param_list ; 
852       outsort = OPT [ SYMBOL ":" ; outsort = term -> outsort ] -> 
853         G.NInverter (loc,name,indty,paramspec,outsort)
854     | NLETCOREC ; defs = let_defs -> 
855         nmk_rec_corec `CoInductive defs loc
856     | NLETREC ; defs = let_defs -> 
857         nmk_rec_corec `Inductive defs loc
858     | IDENT "ninductive"; spec = inductive_spec ->
859         let (params, ind_types) = spec in
860         G.NObj (loc, N.Inductive (params, ind_types))
861     | IDENT "ncoinductive"; spec = inductive_spec ->
862         let (params, ind_types) = spec in
863         let ind_types = (* set inductive flags to false (coinductive) *)
864           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
865             ind_types
866         in
867         G.NObj (loc, N.Inductive (params, ind_types))
868     | IDENT "universe"; IDENT "constraint"; u1 = tactic_term; 
869         SYMBOL <:unicode<lt>> ; u2 = tactic_term ->
870         let urify = function 
871           | CicNotationPt.AttributedTerm (_, CicNotationPt.Sort (`NType i)) ->
872               NUri.uri_of_string ("cic:/matita/pts/Type"^i^".univ")
873           | _ -> raise (Failure "only a Type[…] sort can be constrained")
874         in
875         let u1 = urify u1 in
876         let u2 = urify u2 in
877          G.NUnivConstraint (loc,u1,u2)
878     | IDENT "unification"; IDENT "hint"; n = int; t = tactic_term ->
879         G.UnificationHint (loc, t, n)
880     | IDENT "ncoercion"; name = IDENT; SYMBOL ":"; ty = term; 
881         SYMBOL <:unicode<def>>; t = term; "on"; 
882         id = [ IDENT | PIDENT ]; SYMBOL ":"; source = term;
883         "to"; target = term ->
884           G.NCoercion(loc,name,t,ty,(id,source),target)     
885     | IDENT "nrecord" ; (params,name,ty,fields) = record_spec ->
886         G.NObj (loc, N.Record (params,name,ty,fields))
887     | IDENT "ncopy" ; s = IDENT; IDENT "from"; u = URI; "with"; 
888       m = LIST0 [ u1 = URI; SYMBOL <:unicode<mapsto>>; u2 = URI -> u1,u2 ] ->
889         G.NCopy (loc,s,NUri.uri_of_string u,
890           List.map (fun a,b -> NUri.uri_of_string a, NUri.uri_of_string b) m)
891   ]];
892
893   grafite_command: [ [
894       IDENT "set"; n = QSTRING; v = QSTRING ->
895         G.Set (loc, n, v)
896     | IDENT "drop" -> G.Drop loc
897     | IDENT "print"; s = IDENT -> G.Print (loc,s)
898     | IDENT "qed" -> G.Qed loc
899     | IDENT "variant" ; name = IDENT; SYMBOL ":"; 
900       typ = term; SYMBOL <:unicode<def>> ; newname = IDENT ->
901         G.Obj (loc, 
902           N.Theorem 
903             (`Variant,name,typ,Some (N.Ident (newname, None)), `Regular))
904     | flavour = theorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
905       body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
906         G.Obj (loc, N.Theorem (flavour, name, typ, body,`Regular))
907     | flavour = theorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
908       body = term ->
909         G.Obj (loc,
910           N.Theorem (flavour, name, N.Implicit `JustOne, Some body,`Regular))
911     | IDENT "axiom"; name = IDENT; SYMBOL ":"; typ = term ->
912         G.Obj (loc, N.Theorem (`Axiom, name, typ, None, `Regular))
913     | LETCOREC ; defs = let_defs -> 
914         mk_rec_corec `CoInductive defs loc
915     | LETREC ; defs = let_defs -> 
916         mk_rec_corec `Inductive defs loc
917     | IDENT "inductive"; spec = inductive_spec ->
918         let (params, ind_types) = spec in
919         G.Obj (loc, N.Inductive (params, ind_types))
920     | IDENT "coinductive"; spec = inductive_spec ->
921         let (params, ind_types) = spec in
922         let ind_types = (* set inductive flags to false (coinductive) *)
923           List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
924             ind_types
925         in
926         G.Obj (loc, N.Inductive (params, ind_types))
927     | IDENT "coercion" ; 
928       t = [ u = URI -> N.Uri (u,None) | t = tactic_term ; OPT "with" -> t ] ;
929       arity = OPT int ; saturations = OPT int; 
930       composites = OPT (IDENT "nocomposites") ->
931         let arity = match arity with None -> 0 | Some x -> x in
932         let saturations = match saturations with None -> 0 | Some x -> x in
933         let composites = match composites with None -> true | Some _ -> false in
934         G.Coercion
935          (loc, t, composites, arity, saturations)
936     | IDENT "prefer" ; IDENT "coercion"; t = tactic_term ->
937         G.PreferCoercion (loc, t)
938     | IDENT "pump" ; steps = int ->
939         G.Pump(loc,steps)
940     | IDENT "inverter"; name = IDENT; IDENT "for";
941         indty = tactic_term; paramspec = inverter_param_list ->
942           G.Inverter
943             (loc, name, indty, paramspec)
944     | IDENT "record" ; (params,name,ty,fields) = record_spec ->
945         G.Obj (loc, N.Record (params,name,ty,fields))
946     | IDENT "default" ; what = QSTRING ; uris = LIST1 URI ->
947        let uris = List.map UriManager.uri_of_string uris in
948         G.Default (loc,what,uris)
949     | IDENT "relation" ; aeq = tactic_term ; "on" ; a = tactic_term ;
950       refl = OPT [ IDENT "reflexivity" ; IDENT "proved" ; IDENT "by" ;
951                    refl = tactic_term -> refl ] ;
952       sym = OPT [ IDENT "symmetry" ; IDENT "proved" ; IDENT "by" ;
953                    sym = tactic_term -> sym ] ;
954       trans = OPT [ IDENT "transitivity" ; IDENT "proved" ; IDENT "by" ;
955                    trans = tactic_term -> trans ] ;
956       "as" ; id = IDENT ->
957        G.Relation (loc,id,a,aeq,refl,sym,trans)
958   ]];
959   lexicon_command: [ [
960       IDENT "alias" ; spec = alias_spec ->
961         L.Alias (loc, spec)
962     | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
963         L.Notation (loc, dir, l1, assoc, prec, l2)
964     | IDENT "interpretation"; id = QSTRING;
965       (symbol, args, l3) = interpretation ->
966         L.Interpretation (loc, id, (symbol, args), l3)
967   ]];
968   executable: [
969     [ cmd = grafite_command; SYMBOL "." -> G.Command (loc, cmd)
970     | ncmd = grafite_ncommand; SYMBOL "." -> G.NCommand (loc, ncmd)
971     | tac = atomic_tactical LEVEL "loops"; punct = punctuation_tactical ->
972         G.Tactic (loc, Some tac, punct)
973     | punct = punctuation_tactical -> G.Tactic (loc, None, punct)
974     | tac = ntactic; OPT [ SYMBOL "#" ; SYMBOL "#" ] ; 
975       punct = punctuation_tactical ->
976         cons_ntac tac (npunct_of_punct punct)
977 (*
978     | tac = ntactic; punct = punctuation_tactical ->
979         cons_ntac tac (npunct_of_punct punct)
980 *)
981     | SYMBOL "#" ; SYMBOL "#" ; punct = npunctuation_tactical ->
982         G.NTactic (loc, [punct])
983     | tac = non_punctuation_tactical; punct = punctuation_tactical ->
984         G.NonPunctuationTactical (loc, tac, punct)
985     | SYMBOL "#" ; SYMBOL "#" ; tac = non_punctuation_tactical; 
986         SYMBOL "#" ; SYMBOL "#" ; punct = punctuation_tactical ->
987           G.NTactic (loc, [nnon_punct_of_punct tac; npunct_of_punct punct])
988     | SYMBOL "#" ; SYMBOL "#" ; tac = non_punctuation_tactical; 
989         punct = punctuation_tactical ->
990           G.NTactic (loc, [nnon_punct_of_punct tac; npunct_of_punct punct])
991     | mac = macro; SYMBOL "." -> G.Macro (loc, mac)
992     ]
993   ];
994   comment: [
995     [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT -> 
996        G.Code (loc, ex)
997     | str = NOTE -> 
998        G.Note (loc, str)
999     ]
1000   ];
1001   statement: [
1002     [ ex = executable ->
1003        fun ?(never_include=false) ~include_paths status ->
1004           let stm = G.Executable (loc, ex) in
1005           !grafite_callback stm;
1006           status, LSome stm
1007     | com = comment ->
1008        fun ?(never_include=false) ~include_paths status -> 
1009           let stm = G.Comment (loc, com) in
1010           !grafite_callback stm;
1011           status, LSome stm
1012     | (iloc,fname,normal,mode) = include_command ; SYMBOL "."  ->
1013        fun ?(never_include=false) ~include_paths status ->
1014         let _root, buri, fullpath, _rrelpath = 
1015           Librarian.baseuri_of_script ~include_paths fname in
1016         if never_include then raise (NoInclusionPerformed fullpath)
1017         else
1018          begin
1019           let stm =
1020            G.Executable
1021             (loc, G.Command (loc, G.Include (iloc,normal,`OldAndNew,fname))) in
1022           !grafite_callback stm;
1023           let status =
1024            LE.eval_command status (L.Include (iloc,buri,mode,fullpath)) in
1025           let stm =
1026            G.Executable
1027             (loc,G.Command (loc,G.Include (iloc,normal,`OldAndNew,buri)))
1028           in
1029            status, LSome stm
1030          end
1031     | scom = lexicon_command ; SYMBOL "." ->
1032        fun ?(never_include=false) ~include_paths status ->
1033           !lexicon_callback scom;         
1034           let status = LE.eval_command status scom in
1035           status, LNone loc
1036     | EOI -> raise End_of_file
1037     ]
1038   ];
1039 END
1040 (* }}} *)
1041 ;;
1042
1043 let _ = initialize_parser () ;;
1044
1045 let exc_located_wrapper f =
1046   try
1047     f ()
1048   with
1049   | Stdpp.Exc_located (_, End_of_file) -> raise End_of_file
1050   | Stdpp.Exc_located (floc, Stream.Error msg) ->
1051       raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
1052   | Stdpp.Exc_located (floc, HExtlib.Localized(_,exn)) ->
1053       raise
1054        (HExtlib.Localized (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
1055   | Stdpp.Exc_located (floc, exn) ->
1056       raise
1057        (HExtlib.Localized (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
1058
1059 let parse_statement lexbuf =
1060   exc_located_wrapper
1061     (fun () -> (Grammar.Entry.parse (Obj.magic !grafite_parser.statement) (Obj.magic lexbuf)))
1062
1063 let statement () = Obj.magic !grafite_parser.statement
1064
1065 let history = ref [] ;;
1066
1067 let push () =
1068   LexiconSync.push ();
1069   history := !grafite_parser :: !history;
1070   grafite_parser := initial_parser ();
1071   initialize_parser ()
1072 ;;
1073
1074 let pop () =
1075   LexiconSync.pop ();
1076   match !history with
1077   | [] -> assert false
1078   | gp :: tail ->
1079       grafite_parser := gp;
1080       history := tail
1081 ;;
1082
1083 (* vim:set foldmethod=marker: *)
1084
1085