summaryrefslogtreecommitdiff
path: root/src/cjrize.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/cjrize.sml')
-rw-r--r--src/cjrize.sml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cjrize.sml b/src/cjrize.sml
index e137c6fd..1f515552 100644
--- a/src/cjrize.sml
+++ b/src/cjrize.sml
@@ -211,6 +211,12 @@ fun cifyExp (eAll as (e, loc), sm) =
in
((L'.ECon (dk, pc, eo), loc), sm)
end
+ | L.ENone t =>
+ let
+ val (t, sm) = cifyTyp (t, sm)
+ in
+ ((L'.ENone t, loc), sm)
+ end
| L.ESome (t, e) =>
let
val (t, sm) = cifyTyp (t, sm)