]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/disambiguateTypes.mli
- moved command as sub-entries of tactical grammars (as per tactics)
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateTypes.mli
index b6130080f170378411f307b6ce9dc98cc9bdaf86..ccde1a4e85690dc66374e93a67deffc9558f8fc7 100644 (file)
@@ -40,16 +40,27 @@ and environment = codomain_item Environment.t
 
 module type Callbacks =
   sig
+
     val interactive_user_uri_choice :
       selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
       title:string -> msg:string -> id:string -> string list -> string list
+
     val interactive_interpretation_choice :
-      (string * string) list list -> int
-    val input_or_locate_uri : title:string -> UriManager.uri
+      (string * string) list list -> int list
+
+    (** @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
   end
 
 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.tactical
+