Skip to content

Commit

Permalink
Remove a Rakudo workaround; the tests pass without it.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Nov 20, 2011
1 parent 9864b66 commit c292476
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lib/JSON/Tiny/Actions.pm
Expand Up @@ -4,14 +4,11 @@ method TOP($/) {
make $/.values.[0].ast;
};
method object($/) {
# RAKUDO
# the .item works around RT #78510
make $<pairlist>.ast.hash.item ;
make $<pairlist>.ast.hash;
}

method pairlist($/) {
# the .item works around RT #78510
make $<pair>>>.ast.flat.item;
make $<pair>>>.ast.flat;
}

method pair($/) {
Expand Down

0 comments on commit c292476

Please sign in to comment.