Bugfix: Uppercase hexadecimal literals were not parsed (JFlex bug?)

This commit is contained in:
2021-07-31 14:12:58 +02:00
parent 27b7593de8
commit ce3cdbbed6
6 changed files with 194 additions and 175 deletions
@@ -62,7 +62,7 @@ OPSIZE_BS=(\.[bs])
OPSIZE_W=(\.w)
OPSIZE_L=(\.l)
BINARY=(%[01]+)
HEXADECIMAL=(\$[0-9a-f]+)
HEXADECIMAL=(\$[0-9a-fA-F]+)
OCTAL=(@[0-7]+)
DECIMAL=([0-9]+)
STRINGLIT=(`([^`\\\r\n]|\\.)*`|'([^'\\\r\n]|\\.)*'|\"([^\"\\\r\n]|\\.)*\")