1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
31 let exc_located_wrapper f =
35 | Stdpp.Exc_located (_, End_of_file) -> raise End_of_file
36 | Stdpp.Exc_located (floc, Stream.Error msg) ->
37 raise (HExtlib.Localized (floc,CicNotationParser.Parse_error msg))
38 | Stdpp.Exc_located (floc, HExtlib.Localized(_,exn)) ->
39 raise (HExtlib.Localized
40 (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
41 | Stdpp.Exc_located (floc, exn) ->
42 raise (HExtlib.Localized
43 (floc,CicNotationParser.Parse_error (Printexc.to_string exn)))
45 type parsable = Grammar.parsable
47 let parsable_statement status buf =
48 let grammar = CicNotationParser.level2_ast_grammar status in
49 Grammar.parsable grammar (Obj.magic buf)
51 let parse_statement grafite_parser parsable =
53 (fun () -> (Grammar.Entry.parse_parsable (Obj.magic grafite_parser) parsable))
55 let add_raw_attribute ~text t = N.AttributedTerm (`Raw text, t)
57 let default_associativity = Gramext.NonA
59 let mk_rec_corec ind_kind defs loc =
62 | (params,(N.Ident (name, `Ambiguous), ty),_,_) :: _ ->
63 let ty = match ty with Some ty -> ty | None -> N.Implicit `JustOne in
66 (fun var ty -> N.Binder (`Pi,var,ty)
72 let body = N.Ident (name,`Ambiguous) in
73 (loc, N.Theorem(`Definition, name, ty, Some (N.LetRec (ind_kind, defs, body)), `Regular))
75 let nmk_rec_corec ind_kind defs loc =
76 let loc,t = mk_rec_corec ind_kind defs loc in
80 let nnon_punct_of_punct = function
81 | G.Skip loc -> G.NSkip loc
82 | G.Unfocus loc -> G.NUnfocus loc
83 | G.Focus (loc,l) -> G.NFocus (loc,l)
86 type by_continuation =
88 | BYC_weproved of N.term * string option * N.term option
89 | BYC_letsuchthat of string * N.term * string * N.term
90 | BYC_wehaveand of string * N.term * string * N.term
92 let mk_parser statement lstatus =
93 (* let grammar = CicNotationParser.level2_ast_grammar lstatus in *)
94 let term = CicNotationParser.term lstatus in
95 let let_defs = CicNotationParser.let_defs lstatus in
96 let protected_binder_vars = CicNotationParser.protected_binder_vars lstatus in
97 (* {{{ parser initialization *)
99 GLOBAL: term statement;
100 constructor: [ [ name = IDENT; SYMBOL ":"; typ = term -> (name, typ) ] ];
101 tactic_term: [ [ t = term LEVEL "90" -> t ] ];
105 | id = IDENT -> Some id ]
108 ident_list1: [ [ LPAREN; idents = LIST1 IDENT; RPAREN -> idents ] ];
110 [ tactic_terms = LIST1 tactic_term SEP SYMBOL "," -> tactic_terms ]
113 [ IDENT "normalize" ; delta = OPT [ IDENT "nodelta" -> () ] ->
114 let delta = match delta with None -> true | _ -> false in
116 (*| IDENT "unfold"; t = OPT tactic_term -> `Unfold t*)
117 | IDENT "whd" ; delta = OPT [ IDENT "nodelta" -> () ] ->
118 let delta = match delta with None -> true | _ -> false in
121 sequent_pattern_spec: [
125 path = OPT [SYMBOL ":" ; path = tactic_term -> path ] ->
126 (id,match path with Some p -> p | None -> N.UserInput) ];
127 goal_path = OPT [ SYMBOL <:unicode<vdash>>; term = tactic_term -> term ] ->
129 match goal_path, hyp_paths with
130 None, [] -> Some N.UserInput
132 | Some goal_path, _ -> Some goal_path
141 [ "match" ; wanted = tactic_term ;
142 sps = OPT [ "in"; sps = sequent_pattern_spec -> sps ] ->
144 | sps = sequent_pattern_spec ->
147 let wanted,hyp_paths,goal_path =
148 match wanted_and_sps with
149 wanted,None -> wanted, [], Some N.UserInput
150 | wanted,Some (hyp_paths,goal_path) -> wanted,hyp_paths,goal_path
152 wanted, hyp_paths, goal_path ] ->
154 None -> None,[],Some N.UserInput
157 inverter_param_list: [
158 [ params = tactic_term ->
159 let deannotate = function
160 | N.AttributedTerm (_,t) | t -> t
161 in match deannotate params with
162 | N.Implicit _ -> [false]
163 | N.UserInput -> [true]
165 List.map (fun x -> match deannotate x with
166 | N.Implicit _ -> false
167 | N.UserInput -> true
168 | _ -> raise (Invalid_argument "malformed target parameter list 1")) l
170 (*CSC: new NCicPp.status is the best I can do here without changing the
172 raise (Invalid_argument ("malformed target parameter list 2\n" ^ NotationPp.pp_term (new NCicPp.status) params)) ]
175 [ SYMBOL ">" -> `LeftToRight
176 | SYMBOL "<" -> `RightToLeft ]
178 int: [ [ num = NUMBER -> int_of_string num ] ];
181 [ OPT [ IDENT "names" ];
182 num = OPT [ num = int -> num ];
183 idents = intros_names ->
188 (* MATITA 1.0 using: [ [ using = OPT [ IDENT "using"; t = tactic_term -> t ] -> using ] ]; *)
190 [ SYMBOL "@"; t = tactic_term -> G.NTactic(loc,[G.NApply (loc, t)])
191 | IDENT "apply"; t = tactic_term -> G.NTactic(loc,[G.NApply (loc, t)])
192 | IDENT "applyS"; t = tactic_term -> G.NTactic(loc,[G.NSmartApply(loc, t)])
196 [ id = IDENT ; SYMBOL ":" ; ty = tactic_term -> id,`Decl ty
197 | id = IDENT ; SYMBOL ":" ; ty = tactic_term ;
198 SYMBOL <:unicode<def>> ; bo = tactic_term ->
200 SYMBOL <:unicode<vdash>>;
201 concl = tactic_term -> (List.rev hyps,concl) ] ->
202 G.NTactic(loc,[G.NAssert (loc, seqs)])
203 (*| IDENT "auto"; params = auto_params ->
204 G.NTactic(loc,[G.NAuto (loc, params)])*)
205 | SYMBOL "/"; num = OPT NUMBER ;
206 just_and_params = auto_params; SYMBOL "/" ->
207 let just,params = just_and_params in
208 let depth = match num with Some n -> n | None -> "1" in
212 [G.NAuto(loc,(None,["depth",depth]@params))])
213 | Some (`Univ univ) ->
215 [G.NAuto(loc,(Some univ,["depth",depth]@params))])
218 [G.NAuto(loc,(Some [],["depth",depth]@params))])
221 G.NAutoInteractive (loc, (None,["depth",depth]@params))))
222 | IDENT "intros" -> G.NMacro (loc, G.NIntroGuess loc)
223 | IDENT "check"; t = term -> G.NMacro(loc,G.NCheck (loc,t))
224 | IDENT "screenshot"; fname = QSTRING ->
225 G.NMacro(loc,G.Screenshot (loc, fname))
226 | IDENT "cases"; what = tactic_term ; where = pattern_spec ->
227 G.NTactic(loc,[G.NCases (loc, what, where)])
228 | IDENT "change"; what = pattern_spec; "with"; with_what = tactic_term ->
229 G.NTactic(loc,[G.NChange (loc, what, with_what)])
230 | SYMBOL "-"; ids = LIST1 IDENT ->
231 G.NTactic(loc,[G.NClear (loc, ids)])
232 | (*SYMBOL "^"*)PLACEHOLDER; num = OPT NUMBER;
233 l = OPT [ SYMBOL "{"; l = LIST1 tactic_term; SYMBOL "}" -> l ] ->
234 G.NTactic(loc,[G.NConstructor (loc, (match num with None -> None | Some x -> Some (int_of_string x)),match l with None -> [] | Some l -> l)])
235 | IDENT "cut"; t = tactic_term -> G.NTactic(loc,[G.NCut (loc, t)])
236 (* | IDENT "discriminate"; t = tactic_term -> G.NDiscriminate (loc, t)
237 | IDENT "subst"; t = tactic_term -> G.NSubst (loc, t) *)
238 | IDENT "destruct"; just = OPT [ dom = ident_list1 -> dom ];
239 exclude = OPT [ IDENT "skip"; skip = ident_list1 -> skip ]
240 -> let exclude' = match exclude with None -> [] | Some l -> l in
241 G.NTactic(loc,[G.NDestruct (loc,just,exclude')])
242 | IDENT "elim"; what = tactic_term ; where = pattern_spec ->
243 G.NTactic(loc,[G.NElim (loc, what, where)])
244 | IDENT "generalize"; p=pattern_spec ->
245 G.NTactic(loc,[G.NGeneralize (loc, p)])
246 | IDENT "inversion"; what = tactic_term ; where = pattern_spec ->
247 G.NTactic(loc,[G.NInversion (loc, what, where)])
248 | IDENT "lapply"; t = tactic_term -> G.NTactic(loc,[G.NLApply (loc, t)])
249 | IDENT "letin"; name = IDENT ; SYMBOL <:unicode<def>> ; t = tactic_term;
250 where = pattern_spec ->
251 G.NTactic(loc,[G.NLetIn (loc,where,t,name)])
252 | kind = nreduction_kind; p = pattern_spec ->
253 G.NTactic(loc,[G.NReduce (loc, kind, p)])
254 | dir = direction; what = tactic_term ; where = pattern_spec ->
255 G.NTactic(loc,[G.NRewrite (loc, dir, what, where)])
256 | IDENT "rewrite"; dir = direction; what = tactic_term ; where = pattern_spec ->
257 G.NTactic(loc,[G.NRewrite (loc, dir, what, where)])
258 | IDENT "try"; tac = SELF ->
259 let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
260 G.NTactic(loc,[ G.NTry (loc,tac)])
261 | IDENT "repeat"; tac = SELF ->
262 let tac = match tac with G.NTactic(_,[t]) -> t | _ -> assert false in
263 G.NTactic(loc,[ G.NRepeat (loc,tac)])
264 | LPAREN; l = LIST1 SELF; RPAREN ->
267 (List.map (function G.NTactic(_,t) -> t | _ -> assert false) l) in
268 G.NTactic(loc,[G.NBlock (loc,l)])
269 | IDENT "assumption" -> G.NTactic(loc,[ G.NAssumption loc])
270 | SYMBOL "#"; ns=IDENT -> G.NTactic(loc,[ G.NIntros (loc,[ns])])
271 | SYMBOL "#"; SYMBOL "_" -> G.NTactic(loc,[ G.NIntro (loc,"_")])
272 | SYMBOL "*" -> G.NTactic(loc,[ G.NCase1 (loc,"_")])
273 | SYMBOL "*"; n=IDENT -> G.NTactic(loc,[ G.NCase1 (loc,n)])
278 | IDENT "fast_paramod"
292 i = auto_fixed_param -> i,""
293 | i = auto_fixed_param ; SYMBOL "="; v = [ v = int ->
294 string_of_int v | v = IDENT -> v ] -> i,v ];
295 just = OPT [ IDENT "by"; by =
296 [ univ = tactic_term_list1 -> `Univ univ
297 | SYMBOL "{"; SYMBOL "}" -> `EmptyUniv
298 | SYMBOL "_" -> `Trace ] -> by ] -> just,params
304 [ 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)
305 | WEPROVED; ty = tactic_term ; t1 = OPT [IDENT "that" ; IDENT "is" ; IDENT "equivalent" ; "to" ; t2 = tactic_term -> t2] ;
306 "done" -> BYC_weproved (ty,None,t1)
308 | "let" ; id1 = IDENT ; SYMBOL ":" ; t1 = tactic_term ;
309 IDENT "such" ; IDENT "that" ; t2=tactic_term ; LPAREN ;
310 id2 = IDENT ; RPAREN -> BYC_letsuchthat (id1,t1,id2,t2)
311 | WEHAVE; t1=tactic_term ; LPAREN ; id1=IDENT ; RPAREN ;"and" ; t2=tactic_term ; LPAREN ; id2=IDENT ; RPAREN ->
312 BYC_wehaveand (id1,t1,id2,t2)
317 rewriting_step_continuation : [
326 [ t1 = SELF; SYMBOL ";"; t2 = SELF ->
329 | G.Seq (_, l) -> l @ [ t2 ]
335 [ tac = SELF; SYMBOL ";";
336 SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
337 (G.Then (loc, tac, tacs))
340 [ IDENT "do"; count = int; tac = SELF ->
341 G.Do (loc, count, tac)
342 | IDENT "repeat"; tac = SELF -> G.Repeat (loc, tac)
346 SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
348 | IDENT "try"; tac = SELF -> G.Try (loc, tac)
350 SYMBOL "["; tacs = LIST0 SELF SEP SYMBOL "|"; SYMBOL "]"->
352 | IDENT "progress"; tac = SELF -> G.Progress (loc, tac)
353 | LPAREN; tac = SELF; RPAREN -> tac
354 | tac = tactic -> tac
358 npunctuation_tactical:
360 [ SYMBOL "[" -> G.NBranch loc
361 | SYMBOL "|" -> G.NShift loc
362 | i = LIST1 int SEP SYMBOL ","; SYMBOL ":" -> G.NPos (loc, i)
363 | SYMBOL "*"; SYMBOL ":" -> G.NWildcard loc
364 | name = IDENT; SYMBOL ":" -> G.NPosbyname (loc, name)
365 | SYMBOL "]" -> G.NMerge loc
366 | SYMBOL ";" -> G.NSemicolon loc
367 | SYMBOL "." -> G.NDot loc
370 nnon_punctuation_tactical:
372 [ IDENT "focus"; goals = LIST1 int -> G.NFocus (loc, goals)
373 | IDENT "unfocus" -> G.NUnfocus loc
374 | IDENT "skip" -> G.NSkip loc
378 [ [ IDENT "definition" ] -> `Definition
379 | [ IDENT "fact" ] -> `Fact
380 | [ IDENT "lemma" ] -> `Lemma
381 | [ IDENT "example" ] -> `Example
382 | [ IDENT "theorem" ] -> `Theorem
383 | [ IDENT "corollary" ] -> `Corollary
388 params = LIST0 protected_binder_vars;
389 SYMBOL ":"; fst_typ = term; SYMBOL <:unicode<def>>; OPT SYMBOL "|";
390 fst_constructors = LIST0 constructor SEP SYMBOL "|";
393 name = IDENT; SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>;
394 OPT SYMBOL "|"; constructors = LIST0 constructor SEP SYMBOL "|" ->
395 (name, true, typ, constructors) ] SEP "with" -> types
399 (fun (names, typ) acc ->
400 (List.map (fun name -> (name, typ)) names) @ acc)
403 let fst_ind_type = (fst_name, true, fst_typ, fst_constructors) in
404 let tl_ind_types = match tl with None -> [] | Some types -> types in
405 let ind_types = fst_ind_type :: tl_ind_types in
411 params = LIST0 protected_binder_vars;
412 SYMBOL ":"; typ = term; SYMBOL <:unicode<def>>; SYMBOL "{" ;
416 SYMBOL ":" -> false,0
417 | SYMBOL ":"; SYMBOL ">" -> true,0
418 | SYMBOL ":"; arity = int ; SYMBOL ">" -> true,arity
421 let b,n = coercion in
423 ] SEP SYMBOL ";"; SYMBOL "}" ->
426 (fun (names, typ) acc ->
427 (List.map (fun name -> (name, typ)) names) @ acc)
430 (params,name,typ,fields)
433 (* XXX: alias spec must be revised (no more instance nums) *)
435 [ IDENT "id"; id = QSTRING; SYMBOL "="; uri = QSTRING ->
436 let alpha = "[a-zA-Z]" in
437 let num = "[0-9]+" in
438 let ident_cont = "\\("^alpha^"\\|"^num^"\\|_\\|\\\\\\)" in
439 let decoration = "\\'" in
440 let ident = "\\("^alpha^ident_cont^"*"^decoration^"*\\|_"^ident_cont^"+"^decoration^"*\\)" in
441 let rex = Str.regexp ("^"^ident^"$") in
442 if Str.string_match rex id 0 then
443 if (try ignore (NReference.reference_of_string uri); true
444 with NReference.IllFormedReference _ -> false)
446 G.Ident_alias (id, uri)
449 (HExtlib.Localized (loc, CicNotationParser.Parse_error (Printf.sprintf "Not a valid uri: %s" uri)))
451 raise (HExtlib.Localized (loc, CicNotationParser.Parse_error (
452 Printf.sprintf "Not a valid identifier: %s" id)))
453 | IDENT "symbol"; symbol = QSTRING;
454 instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
455 SYMBOL "="; dsc = QSTRING ->
457 match instance with Some i -> i | None -> 0
459 G.Symbol_alias (symbol, None, dsc)
461 instance = OPT [ LPAREN; IDENT "instance"; n = int; RPAREN -> n ];
462 SYMBOL "="; dsc = QSTRING ->
464 match instance with Some i -> i | None -> 0
466 G.Number_alias (None,dsc)
470 [ l = LIST0 [ SYMBOL <:unicode<eta>> (* η *); SYMBOL "." -> () ];
472 N.IdentArg (List.length l, id)
476 [ IDENT "left"; IDENT "associative" -> Gramext.LeftA
477 | IDENT "right"; IDENT "associative" -> Gramext.RightA
478 | IDENT "non"; IDENT "associative" -> Gramext.NonA
482 [ "with"; IDENT "precedence"; n = NUMBER -> int_of_string n ]
485 [ dir = OPT direction; s = QSTRING;
486 assoc = OPT associativity; prec = precedence;
489 [ blob = UNPARSED_AST ->
490 add_raw_attribute ~text:(Printf.sprintf "@{%s}" blob)
491 (CicNotationParser.parse_level2_ast lstatus
492 (Ulexing.from_utf8_string blob))
493 | blob = UNPARSED_META ->
494 add_raw_attribute ~text:(Printf.sprintf "${%s}" blob)
495 (CicNotationParser.parse_level2_meta lstatus
496 (Ulexing.from_utf8_string blob))
500 | None -> default_associativity
501 | Some assoc -> assoc
504 add_raw_attribute ~text:s
505 (CicNotationParser.parse_level1_pattern lstatus prec
506 (Ulexing.from_utf8_string s))
508 (dir, p1, assoc, prec, p2)
512 [ r = NREF -> N.NRefPattern (NReference.reference_of_string r)
513 | IMPLICIT -> N.ImplicitPattern
514 | id = IDENT -> N.VarPattern id
515 | LPAREN; terms = LIST1 SELF; RPAREN ->
519 | terms -> N.ApplPattern terms)
523 [ s = CSYMBOL; args = LIST0 argument; SYMBOL "="; t = level3_term ->
529 IDENT "include" ; path = QSTRING ->
530 loc,path,G.WithPreferences
531 | IDENT "include" ; IDENT "alias"; path = QSTRING ->
532 loc,path,G.OnlyPreferences
533 | IDENT "include'" ; path = QSTRING ->
534 loc,path,G.WithoutPreferences
537 grafite_ncommand: [ [
538 IDENT "qed" -> G.NQed loc
539 | nflavour = ntheorem_flavour; name = IDENT; SYMBOL ":"; typ = term;
540 body = OPT [ SYMBOL <:unicode<def>> (* ≝ *); body = term -> body ] ->
541 G.NObj (loc, N.Theorem (nflavour, name, typ, body,`Regular))
542 | nflavour = ntheorem_flavour; name = IDENT; SYMBOL <:unicode<def>> (* ≝ *);
544 G.NObj (loc, N.Theorem (nflavour, name, N.Implicit `JustOne, Some body,`Regular))
545 | IDENT "axiom"; name = IDENT; SYMBOL ":"; typ = term ->
546 G.NObj (loc, N.Theorem (`Axiom, name, typ, None, `Regular))
547 | IDENT "discriminator" ; indty = tactic_term -> G.NDiscriminator (loc,indty)
548 | IDENT "inverter"; name = IDENT; IDENT "for" ; indty = tactic_term ;
549 paramspec = OPT inverter_param_list ;
550 outsort = OPT [ SYMBOL ":" ; outsort = term -> outsort ] ->
551 G.NInverter (loc,name,indty,paramspec,outsort)
552 | LETCOREC ; defs = let_defs ->
553 nmk_rec_corec `CoInductive defs loc
554 | LETREC ; defs = let_defs ->
555 nmk_rec_corec `Inductive defs loc
556 | IDENT "inductive"; spec = inductive_spec ->
557 let (params, ind_types) = spec in
558 G.NObj (loc, N.Inductive (params, ind_types))
559 | IDENT "coinductive"; spec = inductive_spec ->
560 let (params, ind_types) = spec in
561 let ind_types = (* set inductive flags to false (coinductive) *)
562 List.map (fun (name, _, term, ctors) -> (name, false, term, ctors))
565 G.NObj (loc, N.Inductive (params, ind_types))
566 | IDENT "universe"; IDENT "constraint"; u1 = tactic_term;
567 SYMBOL <:unicode<lt>> ; u2 = tactic_term ->
569 | NotationPt.AttributedTerm (_, NotationPt.Sort (`NType i)) ->
570 NUri.uri_of_string ("cic:/matita/pts/Type"^i^".univ")
571 | _ -> raise (Failure "only a Type[…] sort can be constrained")
575 G.NUnivConstraint (loc,u1,u2)
576 | IDENT "unification"; IDENT "hint"; n = int; t = tactic_term ->
577 G.UnificationHint (loc, t, n)
578 | IDENT "coercion"; name = IDENT; SYMBOL ":"; ty = term;
579 SYMBOL <:unicode<def>>; t = term; "on";
580 id = [ IDENT | PIDENT ]; SYMBOL ":"; source = term;
581 "to"; target = term ->
582 G.NCoercion(loc,name,t,ty,(id,source),target)
583 | IDENT "record" ; (params,name,ty,fields) = record_spec ->
584 G.NObj (loc, N.Record (params,name,ty,fields))
585 | IDENT "copy" ; s = IDENT; IDENT "from"; u = URI; "with";
586 m = LIST0 [ u1 = URI; SYMBOL <:unicode<mapsto>>; u2 = URI -> u1,u2 ] ->
587 G.NCopy (loc,s,NUri.uri_of_string u,
588 List.map (fun a,b -> NUri.uri_of_string a, NUri.uri_of_string b) m)
589 | lc = lexicon_command -> lc
593 IDENT "alias" ; spec = alias_spec ->
595 | IDENT "notation"; (dir, l1, assoc, prec, l2) = notation ->
596 G.Notation (loc, dir, l1, assoc, prec, l2)
597 | IDENT "interpretation"; id = QSTRING;
598 (symbol, args, l3) = interpretation ->
599 G.Interpretation (loc, id, (symbol, args), l3)
602 [ ncmd = grafite_ncommand; SYMBOL "." -> G.NCommand (loc, ncmd)
603 | punct = npunctuation_tactical -> G.NTactic (loc, [punct])
604 | tac = nnon_punctuation_tactical(*; punct = npunctuation_tactical*) ->
605 G.NTactic (loc, [tac])
606 | tac = ntactic (*; punct = npunctuation_tactical*) ->
609 | tac = nnon_punctuation_tactical;
610 punct = npunctuation_tactical ->
611 G.NTactic (loc, [tac; punct])
616 [ BEGINCOMMENT ; ex = executable ; ENDCOMMENT ->
623 [ ex = executable -> G.Executable (loc, ex)
624 | com = comment -> G.Comment (loc, com)
625 | (iloc,fname,mode) = include_command ; SYMBOL "." ->
626 G.Executable (loc,G.NCommand (loc,G.Include (iloc,mode,fname)))
627 | EOI -> raise End_of_file
635 type db = GrafiteAst.statement Grammar.Entry.e ;;
637 class type g_status =
639 inherit CicNotationParser.g_status
643 class virtual status =
645 inherit CicNotationParser.status ~keywords:[]
646 val mutable db = None (* mutable only to initialize it :-( *)
647 method parser_db = match db with None -> assert false | Some x -> x
648 method set_parser_db v = {< db = Some v >}
649 method set_parser_status
650 : 'status. #g_status as 'status -> 'self
651 = fun o -> {< db = Some o#parser_db >}#set_notation_parser_status o
653 let grammar = CicNotationParser.level2_ast_grammar self in
654 db <- Some (mk_parser (Grammar.Entry.create grammar "statement") self)
657 let extend status l1 action =
658 let status = CicNotationParser.extend status l1 action in
659 let grammar = CicNotationParser.level2_ast_grammar status in
661 (mk_parser (Grammar.Entry.create grammar "statement") status)
665 let parse_statement status =
666 parse_statement status#parser_db
668 (* vim:set foldmethod=marker: *)