[perl #126656] [JVM] NPE on certain array/hash access

2015-11-18 Thread Christian Bartolomaeus via RT
The problem was, that .sort was broken on rakudo.jvm. That was fixed with commit https://github.com/rakudo/rakudo/commit/5da0b3faed Tests are unfudged again and I'm closing this ticket as 'resolved'.

[perl #126656] [JVM] NPE on certain array/hash access

2015-11-16 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126656] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126656 > S03-metaops/hyper.t has several NPEs across a variety of the tests. -- Will "Coke" Coled

[perl #60732] Parrot doesn't distinguish hash access from array access

2008-12-20 Thread Patrick R. Michaud via RT
Now fixed in r34137, thanks! Pm

Re: [perl #60922] Parrot doesn't distinguish hash access from array access in matches

2008-12-01 Thread Patrick R. Michaud
Just a note that I expect we will fix this when we implement slicing and the postcircumfix: methods. Pm

[perl #60922] Parrot doesn't distinguish hash access from array access in matches

2008-11-30 Thread Carl Mäsak
:a:b'); say $m[0]; rakudo 33354: OUTPUT[Use of uninitialized value␤␤] rakudo: grammar G { token TOP { ^ + $ }; token foo { ':' ? }; token bar { \w } }; my $m = G::TOP(':a:b'); say $m[0][0]; rakudo 33354: OUTPUT[a␤] masak: the problem is that Parrot doesn't distinguish hash

Re: hash access

2003-08-20 Thread Sean O'Rourke
Leopold Toetsch <[EMAIL PROTECTED]> writes: > We have keyed_int shortcuts to get/set items on array like aggregates. > Is there a reason, that we not have keyed_str to access hash elements > by STRING directly. I'm not so sure this would be worth it; since hash lookups are much more expensive tha

hash access

2003-08-20 Thread Leopold Toetsch
We have keyed_int shortcuts to get/set items on array like aggregates. Is there a reason, that we not have keyed_str to access hash elements by STRING directly. Currently a hash access inside parrot needs a key_new_string() which contructs a new Key PMC, where the string then gets extracted

[netlabs #716] Keyed hash access causes spurious "Cannot fetch string out of non-string key!" error

2002-06-18 Thread Clinton A. Pierce
# New Ticket Created by "Clinton A. Pierce" # Please include the string: [netlabs #716] # in the subject line of all future correspondence about this issue. # http://bugs6.perl.org/rt2/Ticket/Display.html?id=716 > Background: String variables in BASIC are stored in the P21 PMC. When I ty t