Branch: refs/heads/master
Home: https://github.com/perl6/specs
L.s.,
I found a small problem when writing a piece of grammar. A simplified
part of it is shown here;
...
token tag-body { ~ }
token body-start { '[' }
token body-end { ']' }
token body-text { .*? }
...
I needed to do something on body-end so I wrote a method for it using an
actions c
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: b41dada4893ddfab6a7aba292e292bdfe002a21c
https://github.com/perl6/specs/commit/b41dada4893ddfab6a7aba292e292bdfe002a21c
Author: Elizabeth Mattijsen
Date: 2015-04-19 (Sun, 19 Apr 2015)
Changed paths:
> On 19 Apr 2015, at 19:16, Parrot Raiser <1parr...@gmail.com> wrote:
>
> Apress have some books about Perl 6,
> http://www.apress.com/catalogsearch/result/?q=perl+6&submit=Go but
> their dates of publishing, (c 2006) make me suspect that they are
> probably outdated to the point of being misleadi
Apress have some books about Perl 6,
http://www.apress.com/catalogsearch/result/?q=perl+6&submit=Go but
their dates of publishing, (c 2006) make me suspect that they are
probably outdated to the point of being misleading.
Is anyone sufficiently familiar with bot Perl 6 and the books to comment?
As a status update: we're back at the original failures:
$ perl6 -e 'my $t = q[%foo% %bar% %foo% %baz%]; my %b = foo => 1, bar => 2, baz
=> 3; $t.=subst("%{.key}%", .value, :g) for %b.pairs; say $t'
Method 'key' not found for invocant of class 'Any'
in block at -e:1
$ perl6-m -e 'my %b = foo
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 9831c81ad045a6f5d6b6fa32e28cfa467a105cd9
https://github.com/perl6/specs/commit/9831c81ad045a6f5d6b6fa32e28cfa467a105cd9
Author: skids
Date: 2015-04-18 (Sat, 18 Apr 2015)
Changed paths:
M S03-operator
# New Ticket Created by Philip Hazelden
# Please include the string: [perl #124342]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=124342 >
For example,
> [ 1,2,3 ].perl
[1, 2, 3]
> [ $(1,2,3) ].perl
[1, 2, 3]
This was fixed by TimToady++. The test is passing again.
I added two tests to S03-sequence/basic.t which should cover the underlying
problem (containers returned from the seq iterator were not respected):
https://github.com/perl6/roast/commit/2be443bf3f
I'm closing this ticket as 'resolved'.