]> matita.cs.unibo.it Git - helm.git/blobdiff - components/grafite_parser/grafiteDisambiguator.mli
Move to OCaml 3.10. Requires debian packages from unstable (soon in testing).
[helm.git] / components / grafite_parser / grafiteDisambiguator.mli
index f37991f934c8f3b27a9afe247b6afb7feaab8359..88940c2c3818bd40cd30c5e707295ceae1e79bfb 100644 (file)
@@ -29,9 +29,9 @@ exception Ambiguous_input
 (* the integer is an offset to be added to each location *)
 exception DisambiguationError of
  int *
- ((Token.flocation list * string * string) list *
+ ((Stdpp.location list * string * string) list *
   (DisambiguateTypes.domain_item * DisambiguateTypes.codomain_item) list *
-  Token.flocation option * string Lazy.t * bool) list list
+  Stdpp.location option * string Lazy.t * bool) list list
   (** parameters are: option name, error message *)
 
 (** initially false; for debugging only (???) *)
@@ -39,7 +39,7 @@ val only_one_pass: bool ref
 
 type choose_uris_callback = id:string -> UriManager.uri list -> UriManager.uri list
 type choose_interp_callback = 
-  string -> int -> (Token.flocation list * string * string) list list -> 
+  string -> int -> (Stdpp.location list * string * string) list list -> 
     int list
 
 val set_choose_uris_callback:   choose_uris_callback -> unit