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

Merge branch 'master' into 'master'

fix missing tokens in the lexer: conditional, unconditional.

See merge request Dynare/preprocessor!6
parents 3ae92499 926ccccb
Branches
Tags
1 merge request!6fix missing tokens in the lexer: conditional, unconditional.
Pipeline #2424 passed
......@@ -608,6 +608,8 @@ DATE -?[0-9]+([ya]|m([1-9]|1[0-2])|q[1-4]|w([1-9]{1}|[1-4][0-9]|5[0-2]))
<DYNARE_STATEMENT>interactive {return token::INTERACTIVE;}
<DYNARE_STATEMENT>screen_shocks {return token::SCREEN_SHOCKS;}
<DYNARE_STATEMENT>steadystate {return token::STEADYSTATE;}
<DYNARE_STATEMENT>unconditional {return token::UNCONDITIONAL;}
<DYNARE_STATEMENT>conditional {return token::CONDITIONAL;}
<DYNARE_STATEMENT>type {return token::TYPE;}
<DYNARE_STATEMENT>qoq {return token::QOQ; }
<DYNARE_STATEMENT>yoy {return token::YOY; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment