[perl #122842] segfault with moar with specific PERL6LIB and running a specific test file

2014-10-02 Thread Christian Bartolomaeus via RT
This was fixed in MoarVM today (cmp. http://irclog.perlgeek.de/perl6/2014-10-02#i_9446636 and http://irclog.perlgeek.de/perl6/2014-10-02#i_9447562).

Re: state and = vs :=

2014-10-02 Thread Jonathan Worthington
On 10/2/2014 16:03, Elizabeth Mattijsen wrote: On 01 Oct 2014, at 07:48, Father Chrysostomos wrote: Does ‘state’ govern ‘:=’ the way it governs ‘=’? In other words, just as this: state $x = 1; only assigns to $x once (per closure), does the same apply to this? state $x := $y; I can

Re: state and = vs :=

2014-10-02 Thread Elizabeth Mattijsen
On 01 Oct 2014, at 07:48, Father Chrysostomos wrote: > Does ‘state’ govern ‘:=’ the way it governs ‘=’? In other words, just as > this: > >state $x = 1; > > only assigns to $x once (per closure), does the same apply to this? > >state $x := $y; > > I can’t find anything in the specs t

[perl #122882] [BUG] Symmetric set difference (^) doesn't right-associate or chain in Rakudo

2014-10-02 Thread Patrick R. Michaud via RT
Added tests in roast/S03-operators/set.t, marking ticket resolved. Pm

[perl6/specs] aadf05: Make anonymous variables silent in all contexts

2014-10-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: aadf0589905c9d76488fd81f738201d12f6d9eeb https://github.com/perl6/specs/commit/aadf0589905c9d76488fd81f738201d12f6d9eeb Author: Elizabeth Mattijsen Date: 2014-10-01 (Wed, 01 Oct 2014) Changed paths:

[perl6/specs] b89831: fix minor syntax error

2014-10-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: b89831bcc08db79b28a430a5a5f334a286ff735e https://github.com/perl6/specs/commit/b89831bcc08db79b28a430a5a5f334a286ff735e Author: L. Grondin Date: 2014-10-01 (Wed, 01 Oct 2014) Changed paths: M S32-set

[perl #122839] Rakudo* 2014:08 panda doesn't see bundled modules

2014-10-02 Thread Tobias Leich via RT
what is your panda --installed list?

[perl #122879] REPL broken on Parrot

2014-10-02 Thread via RT
# New Ticket Created by Sami Boukortt # Please include the string: [perl #122879] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=122879 > The REPL of Rakudo 2014.09 on Parrot doesn't show the prompt anymore, and if it is give

[perl6/specs] e83a75: Remove SEQ() fossil

2014-10-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: e83a759a09acf8838cefd5b4b0e7a421fa1414e7 https://github.com/perl6/specs/commit/e83a759a09acf8838cefd5b4b0e7a421fa1414e7 Author: Elizabeth Mattijsen Date: 2014-10-01 (Wed, 01 Oct 2014) Changed paths:

[perl6/specs] 66edfb: adding missing =over

2014-10-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 66edfbe68aef73cf34482e8f8a7508f51c3de087 https://github.com/perl6/specs/commit/66edfbe68aef73cf34482e8f8a7508f51c3de087 Author: L. Grondin Date: 2014-10-01 (Wed, 01 Oct 2014) Changed paths: M S32-set

[perl6/specs] f11c62: Add inner link for Adverbial Pair forms

2014-10-02 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f11c62c8168ff39d40c355c98f4d4c69a33a3c92 https://github.com/perl6/specs/commit/f11c62c8168ff39d40c355c98f4d4c69a33a3c92 Author: Elizabeth Mattijsen Date: 2014-10-01 (Wed, 01 Oct 2014) Changed paths:

state and = vs :=

2014-10-02 Thread Father Chrysostomos
Does ‘state’ govern ‘:=’ the way it governs ‘=’? In other words, just as this: state $x = 1; only assigns to $x once (per closure), does the same apply to this? state $x := $y; I can’t find anything in the specs that implies that it does. The reason I ask is that I am currently implem

[perl #122882] [BUG] Symmetric set difference (^) doesn't right-associate or chain in Rakudo

2014-10-02 Thread Carl Mäsak via RT
$ 6 'say (^) (^) ' set(b) #122882 can be marked as TEST NEEDED :-) Marked as testneeded.

[perl #111964] [BUG] LTA error message when passing an Int argument to base conversion in Rakudo

2014-10-02 Thread Christian Bartolomaeus via RT
The error message now hopefully is adequat: > my $x=31; say :8($x) You have confused the number 31 with the textual representation "31"; if you wanted to render the number in the given base, use $number.base($radix) in block at :1 There is a test for the correct exception type (X::Numeric::Con

[perl #122746] [BUG] Stringification of AST parameter not captured properly in postfix macro in Rakudo

2014-10-02 Thread Carl Mäsak via RT
masak (>): > m: macro postfix:($o) { quasi { die "Null check failed for > ", $o.Str unless defined {{{$o}}}; {{{$o}}} } }; say 42!!; my > $cookies; my $food = $cookies!! > 16:18 <+camelia> rakudo-moar 51ddd5: OUTPUT«42␤Null check failed for ␤ > in any [...]» > so close. > * masak submits rakudob