in reply to Re: Regexp::Grammars parser from scalar
in thread Regexp::Grammars parser from scalar

yep, it's true, but
  1. i cant use my $regexp = qr{$pattern}ixs, i need to write my $regexp = qr{$pattern }ixs because of caching
  2. there was a bug before version 1.028 with caching of post-translated regexes and because of it i thought that i cant use form like
    $regexp = qr{ ^ <$rule> $ $rules }ixs;
thanks however )