Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Willi Mutschler
preprocessor
Commits
84d79226
Unverified
Commit
84d79226
authored
Dec 14, 2020
by
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/DynareFlex.ll
View file @
84d79226
...
...
@@ -676,14 +676,8 @@ DATE -?[0-9]+([ya]|m([1-9]|1[0-2])|q[1-4])
yylval->build<string>(yytext);
return token::DIAGONAL;
}
<DYNARE_STATEMENT>gmm {
yylval->build<string>(yytext);
return token::GMM;
}
<DYNARE_STATEMENT>smm {
yylval->build<string>(yytext);
return token::SMM;
}
<DYNARE_STATEMENT>gmm {return token::GMM;}
<DYNARE_STATEMENT>smm {return token::SMM;}
<DYNARE_STATEMENT>weighting_matrix {return token::WEIGHTING_MATRIX; }
<DYNARE_STATEMENT>weighting_matrix_scaling_factor {return token::WEIGHTING_MATRIX_SCALING_FACTOR; }
<DYNARE_STATEMENT>analytic_standard_errors {return token::ANALYTIC_STANDARD_ERRORS; }
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment