I prefer to prototype all my methods like so:
sub foo($;$) {
my ($a, $b) = @_;
}
Currently the regexp you have in
Html::Renderers::PerlModule::getSubroutines only picks
up methods with no prototyping at all. To fix this
simply change the regexp from
/^([\w\d]+)/
to
/^([\w\d]+(?:\([\$;\@\%]*\))?)/
Love the tool. Thanks for your work on this.