trwyant
trwyant
This PR exempts PPI::Token::Number::Version from ValuesAndExpressions::RequireNumberSeparators. The theoretical justification is that versions have a different syntax. The practical justification is to eliminate an error when trying to apply the min_value...
The issue here is that, in trying to figure out what captures are used, the code scans forward from the regexp until it hits what it thinks is end-of-scope, or...
This is the consequence of a mis-parse by PPI. PPI PR #247 addresses the mis-parse. This commit contains a workaround for the PPI bug, which can be removed if the...
With Perl 5.25.1, unescaped literal left braces in regular expressions become an error. This is part of a deprecation that was begun in 5.22. This issue turned up in the...
If specified, this argument attempts to launch a browser on the debugger's port. The value of the argument is the name of the browser to launch. If the argument is...
This is brought on by, e.g., $ cover --coverage=default,-pod,-time Use of freed value in iteration at /Users/Shared/trw/local/perl/5.40.0/bin/cover It requires at least two negated coverage categories to trigger the exception. Also...
$ cover -cover=default,-pod,-time fails with the message Use of freed value in iteration at /Users/Shared/trw/local/perl/5.40.0/bin/cover line 124. The workaround is to specify the coverage categories you **do** want, instead of...
When drafting a `Perl::Critic` policy to forbid `@_` and `@ARG` in subroutines with signatures, it would be helpful (though obviously not essential) to have `PPI::Statement::Sub->signature()`. I believe that (unlike `PPI::Statement::Sub->prototype()`)...