diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-11 09:36:47 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-11 09:36:47 -0400 |
commit | 7bc788c67ed9331773355ceeae4ace7923a6e914 (patch) | |
tree | 94beda93e06e4418c5d001aa317365a1d878efdb /src/core_env.sig | |
parent | 9e804908dd69043c8a9942cdf6042b8dc0d76175 (diff) |
Unpoly non-recursive function
Diffstat (limited to 'src/core_env.sig')
-rw-r--r-- | src/core_env.sig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core_env.sig b/src/core_env.sig index 7b72235f..cdbf5946 100644 --- a/src/core_env.sig +++ b/src/core_env.sig @@ -30,6 +30,9 @@ signature CORE_ENV = sig val liftConInCon : int -> Core.con -> Core.con val subConInCon : (int * Core.con) -> Core.con -> Core.con + val liftConInExp : int -> Core.exp -> Core.exp + val subConInExp : (int * Core.con) -> Core.exp -> Core.exp + type env val empty : env |