]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_textual_parser/cicTextualParser0.ml
Added module DiscriminationTactics with brand new tactics Injection and
[helm.git] / helm / ocaml / cic_textual_parser / cicTextualParser0.ml
index e89c00d22bff826ba72c507b2c01a9ef76f28187..fab36396087cb41a1ab691e71a9c28f4d4d3a6fd 100644 (file)
 
 exception Eof;;
 
-let current_uri = ref (UriManager.uri_of_string "cic:/dummy.con");;
-let binders = ref ([] : Cic.name list);;
+type uri =
+   ConUri of UriManager.uri
+ | VarUri of UriManager.uri
+ | IndTyUri of UriManager.uri * int
+ | IndConUri of UriManager.uri * int * int
+;;
+
+type interp_codomain =
+   Uri of uri
+ | Implicit
+;;
+
+let binders = ref ([] : (Cic.name option) list);;
+let metasenv = ref ([] : Cic.metasenv);;