Changes between Version 2 and Version 3 of compoundStatementsLlambdas


Ignore:
Timestamp:
2017-09-27 09:49:38 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • compoundStatementsLlambdas

    v2 v3  
    2121    (   expression                // x := 23 
    2222    |   ifStatementClause         // IF boolExpression compoundStatement [ "ELSE" compoundStatement } 
    23     |   forStatementClause        // EACH ident IN  
    24     |   switchStatementClause 
    25     |   subscribeStatementClause 
    26     |   sendStatementClause 
    27     |   returnStatementClause 
    28     |   transitionStatementClause 
    29     | 
     23    |   forStatementClause        // EACH ident IN enumerableCollection 
     24    |   switchStatementClause     // SWITCH expression { CASE expression { "," expression }* compoundStarement }+ ELSE compoundStatement 
     25    |   subscribeStatementClause  // SUBSCRIBE TO signalIdent { WHEN booleanExpression } 
     26    |   sendStatementClause       // SEND signal TO expression 
     27    |   returnStatementClause     // RETURN expression 
     28    |   transitionStatementClause // TRANS STATE TO ident ( state expression ) 
    3029    ) ; 
    3130}}}