X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_disambiguation%2FcicTextualParser2.mli;h=e867d3435c500cfc620bda538c88f0bc8a44b016;hb=ba3f48ce182aa1dfbf509232680757fbffefdd10;hp=aec7c8f1d7580a7f62fada503f06d7b88bf39251;hpb=7aee283a4fee4fca3fc1d53619c366f793f1e694;p=helm.git diff --git a/helm/ocaml/cic_disambiguation/cicTextualParser2.mli b/helm/ocaml/cic_disambiguation/cicTextualParser2.mli index aec7c8f1d..e867d3435 100644 --- a/helm/ocaml/cic_disambiguation/cicTextualParser2.mli +++ b/helm/ocaml/cic_disambiguation/cicTextualParser2.mli @@ -25,14 +25,25 @@ exception Parse_error of string +(** {3 type shortands} *) + +type tactic = (CicAst.term, string) TacticAst.tactic +type tactical = (CicAst.term, string) TacticAst.tactic TacticAst.tactical +type command = CicAst.term CommandAst.command +type script = CicAst.term CommandAst.Script.script + (** {2 Parsing functions} *) -val parse_term: char Stream.t -> CicAst.term +val parse_term: char Stream.t -> CicAst.term +val parse_tactic: char Stream.t -> tactic +val parse_tactical: char Stream.t -> tactical +val parse_command: char Stream.t -> command +val parse_script: char Stream.t -> script (** {2 Grammar extensions} *) -val term: CicAst.term Grammar.Entry.e (** recursive rule *) -val term0: CicAst.term Grammar.Entry.e (** top level rule *) +val term: CicAst.term Grammar.Entry.e (** recursive rule *) +val term0: CicAst.term Grammar.Entry.e (** top level rule *) val return_term: CicAst.location -> CicAst.term -> CicAst.term