diff --git a/preprocessor/DynareFlex.ll b/preprocessor/DynareFlex.ll index 626d4b13a..af1d867cf 100644 --- a/preprocessor/DynareFlex.ll +++ b/preprocessor/DynareFlex.ll @@ -159,6 +159,7 @@ string eofbuff; /* End of a Dynare statement */ calib_smoother { BEGIN DYNARE_STATEMENT; return token::CALIB_SMOOTHER; } model_diagnostics {BEGIN DYNARE_STATEMENT; return token::MODEL_DIAGNOSTICS;} +extended_path {BEGIN DYNARE_STATEMENT; return token::EXTENDED_PATH;} ; { if (!sigma_e) @@ -185,7 +186,6 @@ string eofbuff; homotopy_setup {BEGIN DYNARE_BLOCK; return token::HOMOTOPY_SETUP;} conditional_forecast_paths {BEGIN DYNARE_BLOCK; return token::CONDITIONAL_FORECAST_PATHS;} svar_identification {BEGIN DYNARE_BLOCK; return token::SVAR_IDENTIFICATION;} -extended_path {BEGIN DYNARE_BLOCK; return token::EXTENDED_PATH;} /* For the semicolon after an "end" keyword */ ; {return Dynare::parser::token_type (yytext[0]);}