]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/basic_rg/brgUntrusted.ml
- xml exportation activated for the brg kernel
[helm.git] / helm / software / lambda-delta / basic_rg / brgUntrusted.ml
index c9f425f88052975b2e1fd0eab1a76a4169d0944f..65735066ab9852025762acfff0da2eec8dd8f8ff 100644 (file)
@@ -9,15 +9,24 @@
      \ /   This software is distributed as is, NO WARRANTY.              
       V_______________________________________________________________ *)
 
+module L = Log
+module B = Brg
 module E = BrgEnvironment
-module R = BrgReduction
 module T = BrgType
 
 (* Interface functions ******************************************************)
 
-let type_check f g = function
-   | None                       -> f None
-   | Some ((_, _, _, t) as obj) ->
-       let f tt obj = f (Some (tt, obj)) in
-       let f tt = E.set_obj (f tt) obj in
-       T.type_of f g R.empty_context t
+(* to share *)
+let type_check f ?(si=false) g = function
+   | None                    -> f None None
+   | Some (e, uri, B.Abst t) ->
+      let f tt obj = f (Some tt) (Some obj) in
+      let f xt tt = E.set_obj (f tt) (e, uri, B.Abst xt) in
+      L.loc := e; T.type_of f ~si g B.empty_context t
+   | Some (e, uri, B.Abbr t) ->
+      let f tt obj = f (Some tt) (Some obj) in
+      let f xt tt = E.set_obj (f tt) (e, uri, B.Abbr xt) in
+      L.loc := e; T.type_of f ~si g B.empty_context t
+   | Some (e, uri, B.Void)   ->
+      let f obj = f None (Some obj) in
+      L.loc := e; E.set_obj f (e, uri, B.Void)