Skip to content
Snippets Groups Projects
Verified Commit 84d79226 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Lexer: no longer associate a semantic value to GMM and SMM tokens

This was forgotten from commit 78f6d486.
parent e74bac52
Branches
No related tags found
No related merge requests found
...@@ -676,14 +676,8 @@ DATE -?[0-9]+([ya]|m([1-9]|1[0-2])|q[1-4]) ...@@ -676,14 +676,8 @@ DATE -?[0-9]+([ya]|m([1-9]|1[0-2])|q[1-4])
yylval->build<string>(yytext); yylval->build<string>(yytext);
return token::DIAGONAL; return token::DIAGONAL;
} }
<DYNARE_STATEMENT>gmm { <DYNARE_STATEMENT>gmm {return token::GMM;}
yylval->build<string>(yytext); <DYNARE_STATEMENT>smm {return token::SMM;}
return token::GMM;
}
<DYNARE_STATEMENT>smm {
yylval->build<string>(yytext);
return token::SMM;
}
<DYNARE_STATEMENT>weighting_matrix {return token::WEIGHTING_MATRIX; } <DYNARE_STATEMENT>weighting_matrix {return token::WEIGHTING_MATRIX; }
<DYNARE_STATEMENT>weighting_matrix_scaling_factor {return token::WEIGHTING_MATRIX_SCALING_FACTOR; } <DYNARE_STATEMENT>weighting_matrix_scaling_factor {return token::WEIGHTING_MATRIX_SCALING_FACTOR; }
<DYNARE_STATEMENT>analytic_standard_errors {return token::ANALYTIC_STANDARD_ERRORS; } <DYNARE_STATEMENT>analytic_standard_errors {return token::ANALYTIC_STANDARD_ERRORS; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment