diff options
author | chriseth <c@ethdev.com> | 2015-11-19 00:12:39 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-11-19 00:12:39 +0800 |
commit | 0cf8d022ae7d2e2da347347fdc76ba9529149c35 (patch) | |
tree | 0193a0e120ed554566e4d11c4af50bce4bf84adb /libsolidity/ast | |
parent | b4e666ccf4fe39b0a1fc909b61daf6dc39e77fc4 (diff) | |
download | dexon-solidity-0cf8d022ae7d2e2da347347fdc76ba9529149c35.tar.gz dexon-solidity-0cf8d022ae7d2e2da347347fdc76ba9529149c35.tar.zst dexon-solidity-0cf8d022ae7d2e2da347347fdc76ba9529149c35.zip |
Addmod and mulmod.
Diffstat (limited to 'libsolidity/ast')
-rw-r--r-- | libsolidity/ast/Types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h index 2f75975f..59c84b7a 100644 --- a/libsolidity/ast/Types.h +++ b/libsolidity/ast/Types.h @@ -747,6 +747,8 @@ public: SetGas, ///< modify the default gas value for the function call SetValue, ///< modify the default value transfer for the function call BlockHash, ///< BLOCKHASH + AddMod, ///< ADDMOD + MulMod, ///< MULMOD ArrayPush, ///< .push() to a dynamically sized array in storage ByteArrayPush ///< .push() to a dynamically sized byte array in storage }; |