]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/disambiguateTypes.mli
added script support
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateTypes.mli
index e88aa51bf3ef19b779e7e10c038b54b9cc0e1c54..c210849669320aaaa57e6e2cfc5e0cb2e119fe96 100644 (file)
@@ -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 -> unit -> UriManager.uri
+    val input_or_locate_uri:
+      title:string -> ?id:string -> unit -> UriManager.uri
   end
 
 val string_of_domain_item: domain_item -> string
@@ -64,4 +65,10 @@ type term = CicAst.term
 type tactic = (term, string) TacticAst.tactic
 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
+