File: Placeholder.pm

package info (click to toggle)
libparse-method-signatures-perl 1.003019-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 3,081; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
package Parse::Method::Signatures::Param::Placeholder;

use Moose::Role;
use namespace::clean -except => 'meta';

sub _stringify_variable_name {
    my ($self) = @_;
    return $self->sigil;
}

1;