diff options
author | Yoichi Hirai <yhirai@pira.jp> | 2016-10-07 16:39:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 16:39:15 +0800 |
commit | d855f645ee5f1b444edfc444b2d26787ef381f09 (patch) | |
tree | 2cc8c65d310fe35598fdfdbcd006b9b7cf0b55ec /docs | |
parent | 3f833c9ef4fde4edc795b5ddce6a7a2b543e3c00 (diff) | |
parent | 70201e9273becee9bdb5b6f7c04f32654142a881 (diff) | |
download | dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar.gz dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar.bz2 dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar.lz dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar.xz dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.tar.zst dexon-solidity-d855f645ee5f1b444edfc444b2d26787ef381f09.zip |
Merge pull request #1175 from ethereum/document-reserved-keywords
Document the reserved keywords
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index d00ffbe3..c4a954ad 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -339,3 +339,11 @@ Modifiers - ``anonymous`` for events: Does not store event signature as topic. - ``indexed`` for event parameters: Stores the parameter as topic. - ``payable`` for functions: Allows them to receive Ether together with a call. + +Reserved Keywords +================= + +These keywords are reserved in Solidity. They might become part of the syntax in the future: + +``abstract``, ``after``, ``case``, ``catch``, ``final``, ``in``, ``inline``, ``interface``, ``let``, ``match``, +``of``, ``pure``, ``relocatable``, ``static``, ``switch``, ``try``, ``type``, ``typeof``, ``view``. |