File: begin.pm

package info (click to toggle)
libkavorka-perl 0.036-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 712 kB
  • ctags: 213
  • sloc: perl: 2,865; makefile: 25
file content (24 lines) | stat: -rw-r--r-- 369 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use 5.014;
use strict;
use warnings;

package Kavorka::TraitFor::Sub::begin;

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION   = '0.036';

use Moo::Role;
use namespace::sweep;

around _build__tmp_name => sub
{
	my $next = shift;
	my $self = shift;
	
	return $self->$next(@_)
		unless defined $self->invocation_style;
	
	$self->qualified_name or $self->$next(@_);
};

1;