X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_disambiguation%2FdisambiguateTypes.mli;h=c210849669320aaaa57e6e2cfc5e0cb2e119fe96;hb=b26c4349ed1401d2ac9904deb47efbd4c454d98e;hp=2849a858ca88230e9b686b5165988a47ae2abd27;hpb=78a92e3cc2deb60d306da93d9dcf987c1cb219ba;p=helm.git diff --git a/helm/ocaml/cic_disambiguation/disambiguateTypes.mli b/helm/ocaml/cic_disambiguation/disambiguateTypes.mli index 2849a858c..c21084966 100644 --- a/helm/ocaml/cic_disambiguation/disambiguateTypes.mli +++ b/helm/ocaml/cic_disambiguation/disambiguateTypes.mli @@ -52,7 +52,8 @@ module type Callbacks = (** @param title gtk window title for user prompting * @param id unbound identifier which originated this callback invocation *) - val input_or_locate_uri : title:string -> ?id:string -> UriManager.uri + val input_or_locate_uri: + title:string -> ?id:string -> unit -> UriManager.uri end val string_of_domain_item: domain_item -> string @@ -62,7 +63,12 @@ val string_of_domain: domain_item list -> string 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 +type tactical = (term, string) TacticAst.tactical + +type script_entry = + | Command of tactical + | Comment of CicAst.location * string +type script = CicAst.location * script_entry list + +val empty_environment: environment