This issue surfaces because of the token TOP line. If instead of
| only ruport was used the testcase works for both cases. So it
is quite
possible that the bug is elsewhere but shows up as a difference between
alpha and alnum.
Regards
Vijay
On Fri, Sep 28, 2018 at 07:18:49AM -0700, Patrick R. M
This is in conflict with the documentation at
https://docs.perl6.org/language/regexes which states
Alphabetic characters including _
And
\w. plus
In my example.
'_' matches the alpha regex.
As per specifications, Everything that matches alpha should match alnum.
Which in the given example
This is in conflict with the documentation at
https://docs.perl6.org/language/regexes which states
Alphabetic characters including _
And
\w. plus
In my example.
'_' matches the alpha regex.
As per specifications, Everything that matches alpha should match alnum.
Which in the given example
This issue surfaces because of the token TOP line. If instead of
| only ruport was used the testcase works for both cases. So it
is quite
possible that the bug is elsewhere but shows up as a difference between
alpha and alnum.
Regards
Vijay
On Fri, Sep 28, 2018 at 07:18:49AM -0700, Patrick R. M
Actually, if you change it to .*| -- this will work as you
expect. It's a bug that your version doesn't work, of course. It does
seem to involve tangentially, but it is unrelated to underscore.
On Mon, Oct 1, 2018 at 6:17 PM Vijayvithal via RT <
perl6-bugs-follo...@perl.org> wrote:
> This issu
Actually, if you change it to .*| -- this will work as you
expect. It's a bug that your version doesn't work, of course. It does
seem to involve tangentially, but it is unrelated to underscore.
On Mon, Oct 1, 2018 at 6:17 PM Vijayvithal via RT <
perl6-bugs-follo...@perl.org> wrote:
> This issu