Changes between Version 81 and Version 82 of IR


Ignore:
Timestamp:
11/28/15 11:13:33 (10 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IR

    v81 v82  
    2727program: block ;
    2828block: typedef* vardecl* fundef* statement+ ;
    29 statement: (ID ':')? (simpleStmt | chooseStmt | blockStmt) ;
     29statement: blockStmt | basicStmt ;
     30basicStmt:  (ID ':')? (simpleStmt | chooseStmt) ;
    3031simpleStmt: (guardedStmt | primitiveStmt) ('goto' ID)? ;
    3132guardedStmt: 'when' expr 'do' primitiveStmt ;