[poincare] Explicitely ignore whitespaces when lexing

This commit is contained in:
Romain Goyet
2017-12-12 17:05:03 +01:00
committed by EmilieNumworks
parent 7327f26953
commit 385328f46b

View File

@@ -157,6 +157,7 @@ inf { poincare_expression_yylval.expression = new Undefined(); return UNDEFINED;
\] { return RIGHT_BRACKET; }
\, { return COMMA; }
\. { return DOT; }
[ ]+ /* Ignore whitespaces */
. { return UNDEFINED_SYMBOL; }
%%