[perl #62704] Rakudo stores a grammar in $/ after .parse

2009-01-28 Thread Carl Mäsak via RT
On Sat Jan 24 08:42:32 2009, masak wrote: > r35957: > > $ perl6 -e 'grammar G { regex TOP { ^ } }; G.parse(""); say $/.WHAT; > say $/ ~~ Match' > G > 0 > > What I usually expect in $/ is a Match object that I can query for > matched tokens. I don't know how to do that with a G object; neither > d

[perl #62704] Rakudo stores a grammar in $/ after .parse

2009-01-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #62704] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62704 > r35957: $ perl6 -e 'grammar G { regex TOP { ^ } }; G.parse(""); say $/.WHAT; say $/ ~~