summaryrefslogtreecommitdiff
path: root/src/parser.mly
diff options
context:
space:
mode:
authorKathy Gray2014-06-26 14:44:50 +0100
committerKathy Gray2014-06-26 14:44:50 +0100
commitc55929d04de367ebf84eac485199690d5daf0ed7 (patch)
tree5a7482cb88cd634955156234084b53fe154836dc /src/parser.mly
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 'src/parser.mly')
-rw-r--r--src/parser.mly2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.mly b/src/parser.mly
index 0ee7093d..e1647642 100644
--- a/src/parser.mly
+++ b/src/parser.mly
@@ -528,6 +528,8 @@ npats:
atomic_exp:
| Lcurly semi_exps Rcurly
{ eloc (E_block $2) }
+ | Nondet Lcurly semi_exps Rcurly
+ { eloc (E_nondet $3) }
| id
{ eloc (E_id($1)) }
| lit