Added ufixed and fixed keywords

This commit is contained in:
Denton Liu 2016-05-30 13:56:07 -04:00
parent 83160d56f3
commit b0d9da05cf

View File

@ -63,7 +63,9 @@ class SolidityLexer(RegexLexer):
'|'.join(
['uint%d' % (i + 8) for i in range(0, 256, 8)] +
['int%d' % (i + 8) for i in range(0, 256, 8)] +
['bytes%d' % (i + 1) for i in range(0, 32)]
['bytes%d' % (i + 1) for i in range(0, 32)] +
['ufixed%dx%d' % ((i), (j + 8)) for i in range(0, 256, 8) for j in range(0, 256 - i, 8)] +
['fixed%dx%d' % ((i), (j + 8)) for i in range(0, 256, 8) for j in range(0, 256 - i, 8)]
) + r')\b', Keyword.Type, 'slashstartsregex'),
(r'(abstract|boolean|byte|char|class|const|debugger|double|enum|export|'
r'extends|final|float|goto|implements|int|interface|long|native|'