Data-Util
view release on metacpan or search on metacpan
lib/Data/Util/PurePerl.pm view on Meta::CPAN
else{
push @tmpl, sprintf '$args->[%d]', $i;
}
$i++;
}
$max_ph++;
my($pkg, $file, $line, $hints, $bitmask) = (caller 0 )[0, 1, 2, 8, 9];
my $body = sprintf <<'END_CXT', $pkg, $line, $file;
BEGIN{ $^H = $hints; ${^WARNING_BITS} = $bitmask; }
package %s;
#line %s %s
END_CXT
if($is_method){
my $selfp = shift @tmpl;
$proc = shift @tmpl;
$body .= sprintf q{ sub {
my $self = %s;
my $method = %s;
lib/Data/Util/PurePerl.pm view on Meta::CPAN
);
#$code = curry($_, (my $tmp = $code), *_) for @around;
for my $ar_code(reverse @around){
my $next = $code;
$code = sub{ $ar_code->($next, @_) };
}
my($pkg, $file, $line, $hints, $bitmask) = (caller 0)[0, 1, 2, 8, 9];
my $context = sprintf <<'END_CXT', $pkg, $line, $file;
BEGIN{ $^H = $hints; ${^WARNING_BITS} = $bitmask; }
package %s;
#line %s %s(modify_subroutine)
END_CXT
my $modified = eval $context . q{sub{
$_->(@_) for @before;
if(wantarray){ # list context
my @ret = $code->(@_);
$_->(@_) for @after;
return @ret;
( run in 0.449 second using v1.01-cache-2.11-cpan-49f99fa48dc )