diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-03-01 19:18:44 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-06-12 22:02:53 +0800 |
commit | e4b7b2160e0f98670d39c9651e7ceafd6b1aea32 (patch) | |
tree | f7ff7b4e17e4c61f41b776dde4d3f22d65072f94 /Changelog.md | |
parent | ae2b5898503dd744c04ab605c479e1d2aa4e4d79 (diff) | |
download | dexon-solidity-e4b7b2160e0f98670d39c9651e7ceafd6b1aea32.tar.gz dexon-solidity-e4b7b2160e0f98670d39c9651e7ceafd6b1aea32.tar.zst dexon-solidity-e4b7b2160e0f98670d39c9651e7ceafd6b1aea32.zip |
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 d5b440b2..9330d417 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. |