We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I understand correctly this:
https://github.com/rakudo/rakudo/blob/f1c80fdd9310c14208e511c61f04f264b0f4dae7/src/Perl6/Grammar.nqp#L1403-L1409
lazy only works correctly in front of for statements, but that particular syntax does not seem to be tested.
The text was updated successfully, but these errors were encountered:
It works in front of anything (see the | <blorst> below), it's just that the for statement case is special-cased.
| <blorst>
for
Sorry, something went wrong.
Ah, OK. Then it should be tested anyway, right?
Well, since the lazy for .. case has its own special code path there, it'd seem especially deserving of a test. :-)
lazy for ..
Fixes description of lazy statement prefix, refs #534 #2034
4ef6886
Thanks for @jnthn clarification in Raku/roast#529
No branches or pull requests
If I understand correctly this:
https://github.com/rakudo/rakudo/blob/f1c80fdd9310c14208e511c61f04f264b0f4dae7/src/Perl6/Grammar.nqp#L1403-L1409
lazy only works correctly in front of for statements, but that particular syntax does not seem to be tested.
The text was updated successfully, but these errors were encountered: