From 447797ad9c5228ca50a4fa5b17ced4aba07e8d65 Mon Sep 17 00:00:00 2001 From: Nicolai Date: Tue, 19 Jul 2016 17:27:53 +0200 Subject: [PATCH] Add forStmt to Stmt, removes BasicBinaryOperation, throw expr, explicit rec in ArrTypeName --- libsolidity/grammar.txt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/libsolidity/grammar.txt b/libsolidity/grammar.txt index 5b16db9ce..64ecff60f 100644 --- a/libsolidity/grammar.txt +++ b/libsolidity/grammar.txt @@ -20,10 +20,10 @@ ParameterList = '(' ( VariableDeclaration (',' VariableDeclaration)* )? ')' VariableDeclaration = TypeName Identifier TypeName = ElementaryTypeName | Identifier | Mapping | ArrayTypeName Mapping = 'mapping' '(' ElementaryTypeName '=>' TypeName ')' -ArrayTypeName = TypeName ('[' Expression? ']')+ +ArrayTypeName = TypeName '[' Expression? ']' Block = '{' Statement* '}' -Statement = IfStatement | WhileStatement | Block | +Statement = IfStatement | WhileStatement | ForStatement | Block | ( Continue | Break | Return | Throw | VariableDefinition | ExpressionStatement ) ';' ExpressionStatement = Expression @@ -34,18 +34,17 @@ ForStatement = 'for' '(' (VardefOrExprStmt)? ';' (Expression)? ';' (ExpressionSt Continue = 'continue' Break = 'break' Return = 'return' Expression? -Throw = 'throw' Expression? +Throw = 'throw' VariableDefinition = VariableDeclaration ( '=' Expression )? Expression = Assignment | UnaryOperation | BinaryOperation | FunctionCall | NewExpression | IndexAccess | MemberAccess | PrimaryExpression // The expression syntax is actually much more complicated Assignment = Expression (AssignmentOp Expression) -BasicBinaryOperation = '|' | '^' | '&' | '<<' | '>>' | '>>>' | '+' | '-' | '*' | '/' | '%' -AssignmentOp = BasicBinaryOperation'=' +AssignmentOp = '|=' | '^=' | '&=' | '<<=' | '>>=' | '+=' | '-=' | '*=' | '/=' | '%=' UnaryOperation = '!' | '~' | '++' | '--' | 'delete' -BinaryOperation = BasicBinaryOperation | '||' | '&&' | '**' | - '==' | '!=' | '<' | '>' | '<=' | '>=' +BinaryOperation = '|' | '^' | '&' | '<<' | '>>' | '+' | '-' | '*' | '/' | '%' + | '||' | '&&' | '**' | '==' | '!=' | '<' | '>' | '<=' | '>=' FunctionCall = Identifier '(' Expression? ( ',' Expression )* ')' NewExpression = 'new' Identifier