summaryrefslogtreecommitdiff
path: root/language/l2_parse.ott
diff options
context:
space:
mode:
authorKathy Gray2014-06-26 14:44:50 +0100
committerKathy Gray2014-06-26 14:44:50 +0100
commitc55929d04de367ebf84eac485199690d5daf0ed7 (patch)
tree5a7482cb88cd634955156234084b53fe154836dc /language/l2_parse.ott
parent5f3c514985ac2391aa5fff44b44d433b555b18e5 (diff)
Adding better support for unspecified values in indexed vectors
Also begining to add support for nondeterministic blocks and cleaning up some of the Many warnings on pattern matches
Diffstat (limited to 'language/l2_parse.ott')
-rw-r--r--language/l2_parse.ott2
1 files changed, 2 insertions, 0 deletions
diff --git a/language/l2_parse.ott b/language/l2_parse.ott
index e62e4587..a655959d 100644
--- a/language/l2_parse.ott
+++ b/language/l2_parse.ott
@@ -415,6 +415,8 @@ exp :: 'E_' ::=
| { exp1 ; ... ; expn } :: :: block {{ com block (parsing conflict with structs?) }}
% maybe we really should have indentation-sensitive syntax :-) (given that some of the targets do)
+ | nondet { exp1 ; ... ; expn } :: :: nondet {{ com block that can evaluate the contained expressions in any ordering }}
+
| id :: :: id
{{ com identifier }}