]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/toplevel/meta.ml
some renaming. final commit for version 0.8.0
[helm.git] / helm / software / lambda-delta / toplevel / meta.ml
index a3cb085857c994bd6f361507087d6bfcb58b63cd..563e19b9997ea0fbc52253f952d4ca3bee0b0950 100644 (file)
@@ -9,19 +9,19 @@
      \ /   This software is distributed as is, NO WARRANTY.              
       V_______________________________________________________________ *)
 
-type uri = Unit.uri
+type uri = Entity.uri
 
-type id = Unit.id
+type id = Entity.id
 
 type term = Sort of bool                  (* sorts: true = TYPE, false = PROP *)
          | LRef of int * int             (* local reference: local environment length, de bruijn index *)
          | GRef of int * uri * term list (* global reference: local environment length, name, arguments *)
          | Appl of term * term           (* application: argument, function *)
-         | Abst of id * term * term      (* abstraction: name, type, scope *)
+         | Abst of id * term * term      (* abstraction: name, domain, scope *)
 
 type pars = (id * term) list (* parameter declarations: name, type *)
 
-(* entry: line number, parameters, name, type, (transparent?, body) *)
+(* entry: line number, parameters, name, domain, (transparent?, body) *)
 type entry = int * pars * uri * term * (bool * term) option
 
-type unit = entry option
+type entity = entry option