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_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
+val parse_term: char Stream.t -> DisambiguateTypes.term
+val parse_tactic: char Stream.t -> DisambiguateTypes.tactic
+val parse_tactical: char Stream.t -> DisambiguateTypes.tactical
+val parse_command: char Stream.t -> DisambiguateTypes.command
+val parse_script: char Stream.t -> DisambiguateTypes.script
(** {2 Grammar extensions} *)
val string_of_domain_item: domain_item -> string
val string_of_domain: domain_item list -> string
+(** {3 type shortands} *)
+
+type term = CicAst.term
+type tactic = (term, string) TacticAst.tactic
+type tactical = (term, string) TacticAst.tactic TacticAst.tactical
+type command = term CommandAst.command
+type script = term CommandAst.Script.script
+