aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core_env.sig
diff options
context:
space:
mode:
Diffstat (limited to 'src/core_env.sig')
-rw-r--r--src/core_env.sig6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core_env.sig b/src/core_env.sig
index 88cb253b..1766b3d1 100644
--- a/src/core_env.sig
+++ b/src/core_env.sig
@@ -27,6 +27,8 @@
signature CORE_ENV = sig
+ val liftConInCon : int -> Core.con -> Core.con
+
type env
val empty : env
@@ -44,8 +46,8 @@ signature CORE_ENV = sig
val pushERel : env -> string -> Core.con -> env
val lookupERel : env -> int -> string * Core.con
- val pushENamed : env -> string -> int -> Core.con -> env
- val lookupENamed : env -> int -> string * Core.con
+ val pushENamed : env -> string -> int -> Core.con -> Core.exp option -> env
+ val lookupENamed : env -> int -> string * Core.con * Core.exp option
val declBinds : env -> Core.decl -> env