diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 22:26:39 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 22:26:39 +0800 |
commit | 71438157ce8455cbc14939b95e1a28236f10ed46 (patch) | |
tree | 9673773bc8b687f433abc3c8928dc9ce2d9dbe14 /docs | |
parent | ca5e6a6bd4734483c2ead97562286f9c32033bc0 (diff) | |
download | dexon-solidity-71438157ce8455cbc14939b95e1a28236f10ed46.tar.gz dexon-solidity-71438157ce8455cbc14939b95e1a28236f10ed46.tar.zst dexon-solidity-71438157ce8455cbc14939b95e1a28236f10ed46.zip |
Revert "Remove comma operator"
This reverts commit 1ec74f8cc4b952331b3003e2326eb90aa7fc2e55.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index dd4bb9b0..61dc9a16 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -207,6 +207,8 @@ The following is the order of precedence for operators, listed in order of evalu | | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, | | | | ``/=``, ``%=`` | +------------+-------------------------------------+--------------------------------------------+ +| *16* | Comma operator | ``,`` | ++------------+-------------------------------------+--------------------------------------------+ .. index:: block, coinbase, difficulty, number, block;number, timestamp, block;timestamp, msg, data, gas, sender, value, now, gas price, origin, sha3, ripemd160, sha256, ecrecover, addmod, mulmod, cryptography, this, super, selfdestruct, balance, send @@ -264,3 +266,4 @@ Modifiers - ``constant`` for functions: Disallows modification of state - this is not enforced yet. - ``anonymous`` for events: Does not store event signature as topic. - ``indexed`` for event parameters: Stores the parameter as topic. + |