summaryrefslogtreecommitdiff
path: root/src/urweb.grm
diff options
context:
space:
mode:
Diffstat (limited to 'src/urweb.grm')
-rw-r--r--src/urweb.grm14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/urweb.grm b/src/urweb.grm
index 1d47f36c..c67035de 100644
--- a/src/urweb.grm
+++ b/src/urweb.grm
@@ -283,6 +283,7 @@ fun native_op (oper, e1, e2, loc) =
| texp of exp
| fields of con list
| sqlexps of exp list
+ | fsets of (con * exp) list
%verbose (* print summary of errors *)
@@ -747,6 +748,16 @@ eterm : LPAREN eexp RPAREN (#1 eexp, s (LPARENleft, RPARENright))
();
(EApp (e, (ERecord (ListPair.zip (fields, sqlexps)), loc)), loc)
end)
+ | LPAREN UPDATE texp SET fsets CWHERE sqlexp RPAREN
+ (let
+ val loc = s (LPARENleft, RPARENright)
+
+ val e = (EVar (["Basis"], "update"), loc)
+ val e = (EApp (e, (ERecord fsets, loc)), loc)
+ val e = (EApp (e, texp), loc)
+ in
+ (EApp (e, sqlexp), loc)
+ end)
| UNDER (EWild, s (UNDERleft, UNDERright))
@@ -759,6 +770,9 @@ fields : fident ([fident])
sqlexps: sqlexp ([sqlexp])
| sqlexp COMMA sqlexps (sqlexp :: sqlexps)
+fsets : fident EQ sqlexp ([(fident, sqlexp)])
+ | fident EQ sqlexp COMMA fsets ((fident, sqlexp) :: fsets)
+
idents : ident ([ident])
| ident DOT idents (ident :: idents)