JSON5 in dbStatic: Add lexer support for hex integers

dbLex.l accepts hex notation in JSON numbers.
Tested in dbStaticTest.db as before.
This commit is contained in:
Andrew Johnson
2020-07-21 23:55:00 -05:00
parent fa4af8b27d
commit fe177e40fd
2 changed files with 32 additions and 1 deletions

View File

@@ -33,7 +33,10 @@ exp ([eE]{sign}[0-9]+)
jsonnum ({int}{frac}?{exp}?)
intexp ({int}"."{exp}?)
fracexp ({sign}{frac}{exp}?)
number ({jsonnum}|{intexp}|{fracexp})
zerox ("0x"|"0X")
hexint ({sign}{zerox}{hexdigit}+)
number ({jsonnum}|{intexp}|{fracexp}|{hexint})
%{
#undef YY_INPUT