aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/parsing/Token.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-08 06:12:38 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-18 00:27:04 +0800
commit54230d2d5d15638fdf7c3893ee436fd8bc380e8c (patch)
tree76f6ba3de062954c65e2effcaf6b458433cf12ad /libsolidity/parsing/Token.h
parent6d4628ace4082a4318dc61fff49e8d193eea36e9 (diff)
downloaddexon-solidity-54230d2d5d15638fdf7c3893ee436fd8bc380e8c.tar.gz
dexon-solidity-54230d2d5d15638fdf7c3893ee436fd8bc380e8c.tar.zst
dexon-solidity-54230d2d5d15638fdf7c3893ee436fd8bc380e8c.zip
Support interface (contract) keyword in the parser
Diffstat (limited to 'libsolidity/parsing/Token.h')
-rw-r--r--libsolidity/parsing/Token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/parsing/Token.h b/libsolidity/parsing/Token.h
index c6d050bb..9a557ebd 100644
--- a/libsolidity/parsing/Token.h
+++ b/libsolidity/parsing/Token.h
@@ -157,6 +157,7 @@ namespace solidity
K(Hex, "hex", 0) \
K(If, "if", 0) \
K(Indexed, "indexed", 0) \
+ K(Interface, "interface", 0) \
K(Internal, "internal", 0) \
K(Import, "import", 0) \
K(Is, "is", 0) \
@@ -225,7 +226,6 @@ namespace solidity
K(Final, "final", 0) \
K(In, "in", 0) \
K(Inline, "inline", 0) \
- K(Interface, "interface", 0) \
K(Let, "let", 0) \
K(Match, "match", 0) \
K(NullLiteral, "null", 0) \