On Tue, Aug 12, 2008 at 12:02:41PM -0700, Carl Mäsak wrote: > r30183: > $ ./perl6 -e '"\"" ~~ /\"/' # works > $ ./perl6 -e '"\"" ~~ / < \" > /' # fails > Unable to find regex '' > Null PMC access in invoke() > [...] > > This goes for single as well as double quotes. And backslashes: > > $ ./perl6 -e '"\\" ~~ / < \\ > /' # fails too > Unable to find regex '' > Null PMC access in invoke() > [...]
PGE doesn't yet support the angle quotes inside of regexes. Shouldn't be too hard to add -- just haven't done it yet (and may decide to wait for some other PGE refactors before implementing it). Pm