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
The current implementation from #31 and #203 will always produce parser::If nodes.
If if or unless are used as modifiers (example below), they should lower to parser::IfGuard and parser::UnlessGuard instead.
ifp# `parser::If`"if body"else"else body"endunlessp# `parser::If`, with the blocks swapped"unless body"else"else body"end"value"ifp# Should be `parser::IfGuard`, but is `parser::If` today."value"unlessp# Should be `parser::UnlessGuard`, but is `parser::If` today.
The text was updated successfully, but these errors were encountered:
The current implementation from #31 and #203 will always produce
parser::If
nodes.If
if
orunless
are used as modifiers (example below), they should lower toparser::IfGuard
andparser::UnlessGuard
instead.The text was updated successfully, but these errors were encountered: