summaryrefslogtreecommitdiff
path: root/src/cjrize.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 13:29:01 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 13:29:01 -0400
commit9f8b222f6667f4e7dec2105ea4f5c2abdfd29dc9 (patch)
tree90104da9ab622189caffe5a38bddcb8bfe797233 /src/cjrize.sml
parent4a627a550cb54c18cb16cc0ad852e6a0bbc59c31 (diff)
pquery working with all four types of columns
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)