summaryrefslogtreecommitdiff
path: root/src/elab_util.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 12:27:08 -0400
commit32115a531d5ed6cafa25dc7d3b88c2679e5142a5 (patch)
tree17f75e04d2559dc15a0f184c1c7da266de8a5a16 /src/elab_util.sml
parentc060d15003e3435d4d4c770d8f109f756db13ef5 (diff)
Primitive type constants
Diffstat (limited to 'src/elab_util.sml')
-rw-r--r--src/elab_util.sml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/elab_util.sml b/src/elab_util.sml
index 7a40a889..db444f82 100644
--- a/src/elab_util.sml
+++ b/src/elab_util.sml
@@ -205,7 +205,8 @@ fun mapfoldB {kind = fk, con = fc, exp = fe, bind} =
and mfe' ctx (eAll as (e, loc)) =
case e of
- ERel _ => S.return2 eAll
+ EPrim _ => S.return2 eAll
+ | ERel _ => S.return2 eAll
| ENamed _ => S.return2 eAll
| EApp (e1, e2) =>
S.bind2 (mfe ctx e1,