Changes between Version 29 and Version 30 of ExpressionSyntax


Ignore:
Timestamp:
2017-09-14 12:10:18 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExpressionSyntax

    v29 v30  
    5151  "«" typename "»"; // CASTING 
    5252 
     53surroundingMonadic :=  
     54  ( "(" expression ")"  // precedence  
     55  | "|" expression "|"  // sizeof 
     56  ) ; 
     57 
     58constant := ( integerConstant | stringConstant | realConstant | lambdaConstant ); 
     59 
    5360expression :=  
    5461  ( identifier 
     
    6370      | expression  
    6471      ) ) 
    65   | "(" expression ")" 
     72  | surroundingMonadic 
    6673  ); 
    6774}}}