Changes between Version 17 and Version 18 of CIVLite
- Timestamp:
- 09/29/23 10:40:08 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CIVLite
v17 v18 34 34 block: 'choose' '{' guardedaction+ '}' 35 35 guardedaction: (expr | 'else') '->' transition 36 action: 'noop' assign call spawn return wait begin_atomic end_atomic assert print 36 action : 'noop' | 'begin_atomic' | 'end_atomic' | assign | call | spawn 37 | return | wait | assert | print 37 38 assign: lval '=' expr 38 39 invocation: ID '(' exprlist? ')' … … 41 42 return: 'return' expr? 42 43 wait : 'wait' expr 43 begin_atomic: 'begin_atomic'44 end_atomic: 'end_atomic'45 44 assert: 'assert' expr 46 45 print: 'print' exprstrlst
