From b5eb134a29e378023d2721c94e29c47446c25693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 7 Jun 2013 17:16:12 +0200 Subject: [PATCH] extended_path is a statement, not a block --- preprocessor/DynareFlex.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);}