Subject: | PPI::Statement::Variable::variables breaks for lists with leading whitespace |
Variables are not correctly parsed by
PPI::Statement::Variable::variables when those variables are contained
in a list and the list has whitespace prior to the first variable.
e.g.:
my ($self, $param) = @_; # ok
my ( $self, $param ) = @_; # not ok
I have attached a patch to remedy this.
Subject: | variable_patch.txt |