-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Rakudo doesn't recognize closure form of repetition quantifier #1559
Comments
From @moritz$ ./perl6 -e 'say "abcd" ~~ m/[abc]**{5}/ ' not good... |
From @bbkrNOM: no change bbkr:nom bbkr$ ./perl6 -e 'say "abcd" ~~ m/[abc]**{5}/ ' |
The RT System itself - Status changed from 'new' to 'open' |
From @masak<masak> r: say "foooo" ~~ /^ f o ** 4 $/ I expect all three to yield the same successful match. |
From @masak<masak> r: my $l = 3; say "x" x 10 ~~ / x ** {$l} / |
From @kylehaI put tests for this in S05-mass/rx.t |
@kyleha - Status changed from 'new' to 'open' |
From @kylehaI put tests for this in S05-mass/rx.t |
@kyleha - Status changed from 'new' to 'open' |
From @diakopterOn Tue Sep 13 15:17:04 2011, bbkr wrote:
Different, and wronger, error now: 15:10 <diakopter> r: say "abcd" ~~ m/[abc]**{5}/ |
From @diakopterOn Sun Apr 15 04:27:58 2012, masak wrote:
this is a dupe; I don't remember of what. anyways, now it errors with: 19:33 <diakopter> r: my $l = 3; say "x" x 10 ~~ / x ** {$l} / |
From @MouqIn general, the output is now: 01:55 <Mouq> r: my $l = 3; say "x" x 10 ~~ / x ** {$l} / Although x ** $l gives: 01:51 <Mouq> r: my $l = 4; say "foooo" ~~ /^ f o ** Which is still LTA. |
1 similar comment
From @MouqIn general, the output is now: 01:55 <Mouq> r: my $l = 3; say "x" x 10 ~~ / x ** {$l} / Although x ** $l gives: 01:51 <Mouq> r: my $l = 4; say "foooo" ~~ /^ f o ** Which is still LTA. |
From @FROGGSFROGGS m: say "abcd" ~~ m/[abc]**{5}/ Patches: Raku/nqp@3097e14 Tests: Raku/roast@d90cfb6 |
@FROGGS - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#73172 (status was 'resolved')
Searchable as RT73172$
The text was updated successfully, but these errors were encountered: