summaryrefslogtreecommitdiff
path: root/src/urweb.grm
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 14:15:16 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 14:15:16 -0400
commit95eb24dfa2e3285c3745677acf481fe19b39ee0a (patch)
tree1aa4c73bb850e6bf55ff3d96acf3bc08213afe23 /src/urweb.grm
parenta034349c535b054c9d31beb4e1133f8cd0b68c5a (diff)
Parsing UPDATE
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)