[perl #72286] [BUG] 'self' is writable in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
In the new master branch, self is no longer writable. I don't know if we need a test for this ticket before closing it (I suspect we do). Pm

[perl #72816] [BUG] Cannot assign to an undeclared dynamic variable in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
An undeclared dynamic variable currently results in a failure; attempting to assign to that failure produces the readonly message. Perhaps assignment to a failure should throw its exception? Pm

[perl #72872] [TODO] Implement 'eqv' for Mu in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
Now fixed in 12ea7b9: > say (my $a eqv $a); 1 > say Mu eqv Mu 1 Need to verify we have tests for this. Pm

[perl #73076] [BUG] Can't refer to &infix:<+> in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
Now fixed in 4ab4b8. Probably needs a test before we can resolve the ticket. Pm

[perl #73094] [BUG] The type of an undefined untyped variable should be Any in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
Now fixed in c495888. Closing ticket. Pm

[perl #73120] [BUG] :global doesn't work in .subst in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73120] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73120 > what about g in ? regular expressions? rakudo: say "peer".subst(/e/, 'o', :global);

[perl #73110] [BUG] Parser panic invocation failure when seeing ':my say' after 'my' declaration in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73110] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73110 > rakudo: my ($x = 1; $z = $x):my say $x # jnthn had a laugh about this one rakudo a215

[perl #73102] [BUG] Rakudo insufficiently decisive in rejecting strange combinations of typings in variable declarations

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73102] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73102 > rakudo: my Int (Str $x); say $x.WHAT # unspecced behavior? rakudo a215ee: OUTPUT«Int()

[perl #73136] [BUG] The spaces aren't trimmed in the <> construct in Rakudo

2010-02-26 Thread Patrick R. Michaud via RT
Now fixed in fad9447. Need to verify existence of a spectest for this and then the ticket can be closed. Pm

[perl #73104] [BUG] There might be something wrong with the way Rakudo handles 'my $::x'

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73104] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73104 > rakudo: my $::x # who knows on this one rakudo a215ee: OUTPUT«Symbol '$x' not predecl

[perl #73106] [BUG] Rakudo doesn't handle placeholder parameters quite right

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73106] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73106 > rakudo: my $a = sub { say $^a + $^a }; $a(4); # first of 2 rakudo a215ee: OUTPUT«Not e

[perl #73122] [BUG] Output disappears when doing certain calls to &index using strings with accents in them in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73122] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73122 > rakudo: say index("uuúuúuùù", "úuù") rakudo 403afe: ( no output ) * masak submits rak

[perl #73118] [BUG] LTA error message when invoking a regex with an integer in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73118] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73118 > rakudo: /d/(44) # from diakopterbot rakudo 403afe: OUTPUT«Method '!cursor_start' not f

[perl #73108] [BUG] Null PMC access when doing something really funky with declarations and stuff in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73108] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73108 > rakudo: say my ::say (say $z) # probably a dupe rakudo a215ee: OUTPUT«Null PMC access

[perl #73112] [BUG] There's an empty method on [[]] which gives [] in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73112] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73112 > rakudo: [[]].perl.say; [[]].''().perl.say # I don't know why there's an empty method h

[perl #73094] [BUG] The type of an undefined untyped variable should be Any in Rakudo

2010-02-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73094] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73094 > rakudo: my $a; say $a.WHAT; rakudo e79112: OUTPUT«Mu()␤» should now be Any() * masa