Support lowercase in hex bytes
This commit is contained in:
parent
ffe0bfb428
commit
01531ac307
@ -580,7 +580,7 @@ let letter = small | capital
|
||||
let ident = small (letter | '_' | digit)*
|
||||
let constr = capital (letter | '_' | digit)*
|
||||
let attr = ident | constr
|
||||
let hexa_digit = digit | ['A'-'F']
|
||||
let hexa_digit = digit | ['A'-'F' 'a'-'f']
|
||||
let byte = hexa_digit hexa_digit
|
||||
let byte_seq = byte | byte (byte | '_')* byte
|
||||
let bytes = "0x" (byte_seq? as seq)
|
||||
|
Loading…
Reference in New Issue
Block a user