← Index
NYTProf Performance Profile   « line view »
For /usr/local/libexec/sympa/task_manager-debug.pl
  Run on Tue Jun 1 22:32:51 2021
Reported on Tue Jun 1 22:35:04 2021

Filename/usr/local/lib/perl5/site_perl/B/Hooks/EndOfScope.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sB::Hooks::EndOfScope::::BEGIN@10B::Hooks::EndOfScope::BEGIN@10
0000s0sB::Hooks::EndOfScope::::BEGIN@12B::Hooks::EndOfScope::BEGIN@12
0000s0sB::Hooks::EndOfScope::::BEGIN@13B::Hooks::EndOfScope::BEGIN@13
0000s0sB::Hooks::EndOfScope::::BEGIN@20B::Hooks::EndOfScope::BEGIN@20
0000s0sB::Hooks::EndOfScope::::BEGIN@5B::Hooks::EndOfScope::BEGIN@5
0000s0sB::Hooks::EndOfScope::::BEGIN@6B::Hooks::EndOfScope::BEGIN@6
0000s0sB::Hooks::EndOfScope::::__ANON__B::Hooks::EndOfScope::__ANON__ (xsub)
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package B::Hooks::EndOfScope; # git description: 0.23-2-ga391106
2# ABSTRACT: Execute code after a scope finished compilation
3# KEYWORDS: code hooks execution scope
4
5use strict;
6use warnings;
7
8our $VERSION = '0.24';
9
10use 5.006001;
11
12BEGIN {
13 use Module::Implementation 0.05;
14 Module::Implementation::build_loader_sub(
15 implementations => [ 'XS', 'PP' ],
16 symbols => [ 'on_scope_end' ],
17 )->();
18}
19
20use Sub::Exporter::Progressive 0.001006 -setup => {
21 exports => [ 'on_scope_end' ],
22 groups => { default => ['on_scope_end'] },
23};
24
251;
26
27__END__