diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-14 15:10:04 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-14 15:10:04 -0400 |
commit | 8cc7053b00237cd468290cb5f2042898e7a80329 (patch) | |
tree | 0138b56c392844cd8033fa03e81715b8b1ca4f8a /src/core.sml | |
parent | c81c24b4feb3fae3c13861f1bcaafab697a6bb7e (diff) |
Crud supports INSERT
Diffstat (limited to 'src/core.sml')
-rw-r--r-- | src/core.sml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml index 1fcf26c4..11055aa4 100644 --- a/src/core.sml +++ b/src/core.sml @@ -93,6 +93,7 @@ datatype exp' = | ERecord of (con * exp * con) list | EField of exp * con * { field : con, rest : con } + | EWith of exp * con * exp * { field : con, rest : con } | ECut of exp * con * { field : con, rest : con } | EFold of kind |