In 1.220, PPI::Token::Attribute::parameters does not behave as documented:
The C<parameters> method returns the parameter string for the attribute.
That is, for the attribute C<foo(bar)>, the C<parameters> method would
return C<"bar">.
Returns the parameters as a string (including the null string C<''> for
the case of an attribute such as C<foo()>.)
Returns C<undef> if the attribute does not have parameters.
parameters returns undef for foo(), rather than '' as promised.
In 1.220, PPI::Token::Attribute::parameters does not behave as documented:
parameters returns
undef
forfoo()
, rather than''
as promised.