diff options
author | LianaHus <liana@ethdev.com> | 2015-09-15 22:33:14 +0800 |
---|---|---|
committer | LianaHus <liana@ethdev.com> | 2015-09-16 19:25:32 +0800 |
commit | 279a36b6f8249df48b92574437f57742897841a5 (patch) | |
tree | b40646e4a672ed61610c15a8e3bd28040436acae /libsolidity/grammar.txt | |
parent | 9d43f2c186d1ad4027d42f6b155bea5500efa0e5 (diff) | |
download | dexon-solidity-279a36b6f8249df48b92574437f57742897841a5.tar.gz dexon-solidity-279a36b6f8249df48b92574437f57742897841a5.tar.zst dexon-solidity-279a36b6f8249df48b92574437f57742897841a5.zip |
throw statement implementation
Diffstat (limited to 'libsolidity/grammar.txt')
-rw-r--r-- | libsolidity/grammar.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/grammar.txt b/libsolidity/grammar.txt index 467aebee..08a74f45 100644 --- a/libsolidity/grammar.txt +++ b/libsolidity/grammar.txt @@ -34,6 +34,7 @@ ForStatement = 'for' '(' (VardefOrExprStmt)? ';' (Expression)? ';' (ExpressionSt Continue = 'continue' ';' Break = 'break' ';' Return = 'return' Expression? ';' +Throw = 'throw' Expression? ';' VariableDefinition = VariableDeclaration ( = Expression )? ';' Expression = Assignment | UnaryOperation | BinaryOperation | FunctionCall | NewExpression | IndexAccess | |