mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Switch cases do not require colon
This commit is contained in:
parent
d9abe7b712
commit
0e0de7b7fd
@ -88,9 +88,9 @@ Grammar::
|
|||||||
Expression =
|
Expression =
|
||||||
FunctionCall | Identifier | Literal
|
FunctionCall | Identifier | Literal
|
||||||
Switch =
|
Switch =
|
||||||
'switch' Expression Case+ ( 'default' ':' Block )?
|
'switch' Expression Case+ ( 'default' Block )?
|
||||||
Case =
|
Case =
|
||||||
'case' Literal ':' Block
|
'case' Literal Block
|
||||||
ForLoop =
|
ForLoop =
|
||||||
'for' Block Expression Block Block
|
'for' Block Expression Block Block
|
||||||
BreakContinue =
|
BreakContinue =
|
||||||
|
Loading…
Reference in New Issue
Block a user