diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-09-04 00:17:59 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-09-04 00:21:57 +0800 |
commit | 4522c804f342707ec2bb86a19735a4084108d96d (patch) | |
tree | ccd25ee49fc27fdf0bc041f07d7a242d7b5ab25f /Changelog.md | |
parent | 6e5e05779c6085c1fc58d38390cc5cb447068ecb (diff) | |
download | dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar.gz dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar.bz2 dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar.lz dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar.xz dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.tar.zst dexon-solidity-4522c804f342707ec2bb86a19735a4084108d96d.zip |
Disallow single statement var decl in if/while/for without blocks
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 1e16df59..ec494c41 100644 --- a/Changelog.md +++ b/Changelog.md @@ -68,6 +68,7 @@ Breaking Changes: * Syntax Checker: Named return values in function types are an error. * Syntax Checker: Strictly require visibility specifier for functions. This was already the case in the experimental 0.5.0 mode. * Syntax Checker: Disallow unary ``+``. This was already the case in the experimental 0.5.0 mode. + * Syntax Checker: Disallow single statement variable declaration inside if/while/for without a block. * View Pure Checker: Strictly enfore state mutability. This was already the case in the experimental 0.5.0 mode. Language Features: |