simplify date regex and require [YyAa] to follow annual date

time-shift
Houtan Bastani 2013-10-11 11:13:15 +02:00
parent 374b36b904
commit f6cacbd4db
1 changed files with 1 additions and 1 deletions

View File

@ -690,7 +690,7 @@ string eofbuff;
return token::INT_NUMBER;
}
<DYNARE_STATEMENT,DYNARE_BLOCK>-?[0-9]+[Mm]([1-9]|1[0-2])|-?[0-9]+[Qq][1-4]|-?[0-9]+[Ww]([1-9]{1}|[1-4][0-9]|5[0-2]) {
<DYNARE_STATEMENT,DYNARE_BLOCK>-?[0-9]+([YyAa]|[Mm]([1-9]|1[0-2])|[Qq][1-4]|[Ww]([1-9]{1}|[1-4][0-9]|5[0-2])) {
yylval->string_val = new string(yytext);
return token::DATE_NUMBER;
}