Fix missing seperator from commit 8b450dd8

This commit is contained in:
Nicolai 2016-07-26 15:13:26 +02:00
parent 8b450dd808
commit 3009064533

View File

@ -37,7 +37,7 @@ ArrayTypeName = TypeName StorageLocation? '[' Expression? ']'
StorageLocation = 'memory' | 'storage'
Block = '{' Statement* '}'
Statement = IfStatement | WhileStatement | ForStatement | Block | PlaceholderStatement
Statement = IfStatement | WhileStatement | ForStatement | Block | PlaceholderStatement |
( Continue | Break | Return | Throw | VardefOrExprStmt | ExpressionStatement ) ';'
ExpressionStatement = Expression | VariableDefinition | Assignment | 'delete' Expression