diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-19 00:08:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 00:08:32 +0800 |
commit | ccb5fccee5f7eea8993f2cbc77217abbccae36ce (patch) | |
tree | 55a5a1105720392a7fd5ad7e694433355754ea7e /libsolidity/parsing/Token.h | |
parent | 8cc675150e5e554e438ee4624a9c3429fecba784 (diff) | |
parent | b0b35e1e6b762d3849710054fdb2e1909f6780d9 (diff) | |
download | dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.gz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.bz2 dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.lz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.xz dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.tar.zst dexon-solidity-ccb5fccee5f7eea8993f2cbc77217abbccae36ce.zip |
Merge pull request #4215 from ethereum/constructorWorkaround
Disallow legacy constructor
Diffstat (limited to 'libsolidity/parsing/Token.h')
-rw-r--r-- | libsolidity/parsing/Token.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/parsing/Token.h b/libsolidity/parsing/Token.h index cb855cbe..7ce24e69 100644 --- a/libsolidity/parsing/Token.h +++ b/libsolidity/parsing/Token.h @@ -144,6 +144,7 @@ namespace solidity K(Assembly, "assembly", 0) \ K(Break, "break", 0) \ K(Constant, "constant", 0) \ + K(Constructor, "constructor", 0) \ K(Continue, "continue", 0) \ K(Contract, "contract", 0) \ K(Do, "do", 0) \ |