You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operators used in #case or #is sections that include the = character does not get parsed correctly.
Ex: {#case <= 10}
In this case, for operators <= or >=, the parser only scans < or > as the parameter since = is assumed to be the end of a token in the parser and is cut off from the parameter.
The text was updated successfully, but these errors were encountered:
Operators used in #case or #is sections that include the
=
character does not get parsed correctly.Ex:
{#case <= 10}
In this case, for operators
<=
or>=
, the parser only scans<
or>
as the parameter since=
is assumed to be the end of a token in the parser and is cut off from the parameter.The text was updated successfully, but these errors were encountered: