summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/numeric.fin
blob: 1efd55299855af03bfb33b0bef3dc65aa301d77f (plain)
1
2
3
4
5
6
7
# INT
[+-]?{D}+ {set yylval $yytext; return $INT_}

# REAL
[+-]?{D}+"."?({E})? |
[+-]?{D}*"."{D}+({E})? {set yylval $yytext; return $REAL_}