diff options
author | chriseth <chris@ethereum.org> | 2017-03-06 18:34:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 18:34:22 +0800 |
commit | 14c11170986ed482e4c320afba3226abbb7d1537 (patch) | |
tree | 59dc6c4feda43891070595a3a1364a8461c348da | |
parent | 2dac39b96b5a06e4c77e112cde560ff730fb3d50 (diff) | |
download | dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar.gz dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar.bz2 dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar.lz dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar.xz dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.tar.zst dexon-solidity-14c11170986ed482e4c320afba3226abbb7d1537.zip |
Add keywords delete and for
-rw-r--r-- | docs/utils/SolidityLexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/utils/SolidityLexer.py b/docs/utils/SolidityLexer.py index f5220c8b..1dc99159 100644 --- a/docs/utils/SolidityLexer.py +++ b/docs/utils/SolidityLexer.py @@ -54,7 +54,7 @@ class SolidityLexer(RegexLexer): r'(<<|>>>?|==?|!=?|[-<>+*%&\|\^/])=?', Operator, 'slashstartsregex'), (r'[{(\[;,]', Punctuation, 'slashstartsregex'), (r'[})\].]', Punctuation), - (r'(anonymous|as|assembly|break|constant|continue|do|else|external|hex|if|' + (r'(anonymous|as|assembly|break|constant|continue|do|delete|else|external|for|hex|if|' r'indexed|internal|import|is|mapping|memory|new|payable|public|pragma|' r'private|return|returns|storage|super|this|throw|using|while)\b', Keyword, 'slashstartsregex'), (r'(var|function|event|modifier|struct|enum|contract|library)\b', Keyword.Declaration, 'slashstartsregex'), |