1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00

ASCII parser: support of identifiers containing ‘-‘

This commit is contained in:
Antonin Portelli 2014-02-12 18:34:46 +00:00
parent 05ec53c1bb
commit 6f474ede7b

View File

@ -56,7 +56,7 @@
%}
DIGIT [0-9]
ALPHA [a-zA-Z_]
ALPHA [a-zA-Z_\-]
SIGN \+|-
EXP e|E
INT {SIGN}?{DIGIT}+