diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2016-12-01 22:37:45 +0800 |
---|---|---|
committer | Yoichi Hirai <i@yoichihirai.com> | 2016-12-02 18:52:11 +0800 |
commit | 43b56a61aa734b1abae7dba589b82266cba0fd74 (patch) | |
tree | 787f660f0c957e330b42ab90b6ddae9569551b0a /docs | |
parent | 50bcc60e6ee492cfbdb06bcf0ae82b918fddc0ac (diff) | |
download | dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar.gz dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar.bz2 dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar.lz dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar.xz dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.tar.zst dexon-solidity-43b56a61aa734b1abae7dba589b82266cba0fd74.zip |
parsing: `default` and `null` are reserved keywords
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 1754752d..e479d5f6 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -510,7 +510,7 @@ 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``, +``abstract``, ``after``, ``case``, ``catch``, ``default``, ``final``, ``in``, ``inline``, ``interface``, ``let``, ``match``, ``null``, ``of``, ``pure``, ``relocatable``, ``static``, ``switch``, ``try``, ``type``, ``typeof``, ``view``. Language Grammar |