summaryrefslogtreecommitdiff
path: root/language/l2.lem
diff options
context:
space:
mode:
Diffstat (limited to 'language/l2.lem')
-rw-r--r--language/l2.lem3
1 files changed, 2 insertions, 1 deletions
diff --git a/language/l2.lem b/language/l2.lem
index af6b1485..3b86d2db 100644
--- a/language/l2.lem
+++ b/language/l2.lem
@@ -218,7 +218,8 @@ and fpat 'a =
type exp_aux 'a = (* Expression *)
- | E_block of list (exp 'a) (* block (parsing conflict with structs?) *)
+ | E_block of list (exp 'a) (* block *)
+ | E_nondet of list (exp 'a) (* nondeterminisitic block, expressions evaluate in an unspecified order, or concurrently *)
| E_id of id (* identifier *)
| E_lit of lit (* literal constant *)
| E_cast of typ * (exp 'a) (* cast *)