Subject: | Syntax disallowed in bleadperl |
lib/Text/Query/SolveSimpleString.pm line 52 contains an expression that
was never really documented valid perl but due to an accident was not
disallowed.
$#{@$b}
This is no longer allowed in perl 5.10.
If you replace the expression with $#$b (and the same goes for $a in the
same line) then all tests pass. I haven't checked for other problems
like the warnings about prototype declarations being too late but the
change would be a start to bring the module back on track.