summaryrefslogtreecommitdiff
path: root/src/cjr_env.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-03 11:17:33 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-03 11:17:33 -0400
commit1798f5eb1b11613d88acb307472922976f1583b4 (patch)
treec999bd3f44c245cf22823bf36a9df908b0fafd87 /src/cjr_env.sml
parentcf83c3318fb43ebfce468477c9fb6ad64c96e440 (diff)
Cjrize ECon
Diffstat (limited to 'src/cjr_env.sml')
-rw-r--r--src/cjr_env.sml13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cjr_env.sml b/src/cjr_env.sml
index 84f13f4d..f972a80e 100644
--- a/src/cjr_env.sml
+++ b/src/cjr_env.sml
@@ -39,6 +39,7 @@ exception UnboundStruct of int
type env = {
datatypes : (string * (string * int * typ option) list) IM.map,
+ constructors : (string * typ option * int) IM.map,
numRelE : int,
relE : (string * typ) list,
@@ -49,6 +50,7 @@ type env = {
val empty = {
datatypes = IM.empty,
+ constructors = IM.empty,
numRelE = 0,
relE = [],
@@ -59,6 +61,9 @@ val empty = {
fun pushDatatype (env : env) x n xncs =
{datatypes = IM.insert (#datatypes env, n, (x, xncs)),
+ constructors = foldl (fn ((x, n, to), constructors) =>
+ IM.insert (constructors, n, (x, to, n)))
+ (#constructors env) xncs,
numRelE = #numRelE env,
relE = #relE env,
@@ -71,8 +76,14 @@ fun lookupDatatype (env : env) n =
NONE => raise UnboundNamed n
| SOME x => x
+fun lookupConstructor (env : env) n =
+ case IM.find (#constructors env, n) of
+ NONE => raise UnboundNamed n
+ | SOME x => x
+
fun pushERel (env : env) x t =
{datatypes = #datatypes env,
+ constructors = #constructors env,
numRelE = #numRelE env + 1,
relE = (x, t) :: #relE env,
@@ -90,6 +101,7 @@ fun listERels (env : env) = #relE env
fun pushENamed (env : env) x n t =
{datatypes = #datatypes env,
+ constructors = #constructors env,
numRelE = #numRelE env,
relE = #relE env,
@@ -104,6 +116,7 @@ fun lookupENamed (env : env) n =
fun pushStruct (env : env) n xts =
{datatypes = #datatypes env,
+ constructors = #constructors env,
numRelE = #numRelE env,
relE = #relE env,