Can't locate object method "literal" via package
"PPI::Token::Quote::Literal" at myscript.pl
Basically, PPI::Token::Quote::Literal has a small, small bug, resulting
in something that crashes:
*literal = *PPI::Token::Quote::Single::Literal;
should be
*literal = *PPI::Token::Quote::Single::literal;
(note the case on the last "literal")
Thanks for these modules. This code is making a huge difference for
me.