diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-08-16 22:31:23 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2016-08-16 22:31:23 +0800 |
commit | ec3298535ebe1d6602df9196b81c92d4a88b4821 (patch) | |
tree | f09308a0955b9fb08736b8afa59a381cb909e232 /libsolidity/parsing/Token.h | |
parent | 970260bf0f8b9cdfd46c6956c14e267788ffdc0f (diff) | |
download | dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar.gz dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar.bz2 dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar.lz dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar.xz dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.tar.zst dexon-solidity-ec3298535ebe1d6602df9196b81c92d4a88b4821.zip |
Introduce hex literals (#832)
* Introduce hex keyword token
* Support hex literals
* Include tests for hex literals
* Document hex literals
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 f4de74c7..007baef4 100644 --- a/libsolidity/parsing/Token.h +++ b/libsolidity/parsing/Token.h @@ -155,6 +155,7 @@ namespace solidity K(External, "external", 0) \ K(For, "for", 0) \ K(Function, "function", 0) \ + K(Hex, "hex", 0) \ K(If, "if", 0) \ K(Indexed, "indexed", 0) \ K(Internal, "internal", 0) \ |