id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,lang,patch,platform
1449,Add support for String PMC in NameSpace::get_pmc_keyed,Austin_Hastings,,"Presently, NameSpace PMCs support keyed_pmc access only for Key PMC types:
{{{
austin@andLinux:~/kakapo$ cat test.pir
.sub main
    $P1 = get_hll_namespace

    say ""Testing with Key""
    $P0 = new 'Key'
    $P0 = 'Foo'
    $P2 = $P1[$P0]                # OKAY

    say ""Testing with String PMC""
    $P0 = new 'String'
    $P0 = 'Foo'
    $P2 = $P1[$P0]                # FAIL
.end
austin@andLinux:~/kakapo$ parrot test.pir
Testing with Key
Testing with String PMC
Invalid namespace key in get_pmc_keyed_str
current instr.: 'main' pc 22 (test.pir:12)
}}}

Given than NameSpace supports keyed access with keyed_str, it should also support String PMCs.",todo,closed,normal,,none,2.0.0,medium,fixed,,,,,
