diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-12 23:33:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-12 23:33:26 +0800 |
commit | d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3 (patch) | |
tree | 1ba75f1db43bc443449fa34ee3de5b9134d8c235 /Changelog.md | |
parent | e2f4a9fcf409df1108d355824de12ff43682a728 (diff) | |
parent | e4b7b2160e0f98670d39c9651e7ceafd6b1aea32 (diff) | |
download | dexon-solidity-d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3.tar.gz dexon-solidity-d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3.tar.zst dexon-solidity-d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3.zip |
Merge pull request #3627 from ethereum/additional-keywords
[BREAKING] Add new reserved keywords.
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index e552521e..eafec658 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,9 @@ Breaking Changes: * Disallow conversions between bytesX and uintY of different size. * Commandline interface: Require ``-`` if standard input is used as source. * General: New keywords: ``calldata`` + * General: Add new reserved keywords: ``alias``, ``apply``, ``auto``, ``copyof``, ``define``, ``immutable``, + ``implements``, ``macro``, ``mutable``, ``override``, ``partial``, ``promise``, ``reference``, ``sealed``, + ``sizeof``, ``supports``, ``typedef`` and ``unchecked``. * General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code. * General: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code! * Introduce ``emit`` as a keyword instead of parsing it as identifier. |