← Index
NYTProf Performance Profile   « line view »
For t/bug-md-11.t
  Run on Fri Mar 8 13:27:24 2024
Reported on Fri Mar 8 13:30:23 2024

Filename/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/Test2/EventFacet/Parent.pm
StatementsExecuted 12 statements in 222µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11121µs23µsTest2::EventFacet::Parent::::BEGIN@2Test2::EventFacet::Parent::BEGIN@2
1117µs7µsTest2::EventFacet::Parent::::BEGIN@9Test2::EventFacet::Parent::BEGIN@9
1116µs38µsTest2::EventFacet::Parent::::BEGIN@7Test2::EventFacet::Parent::BEGIN@7
1115µs31µsTest2::EventFacet::Parent::::BEGIN@3Test2::EventFacet::Parent::BEGIN@3
1115µs77µsTest2::EventFacet::Parent::::BEGIN@10Test2::EventFacet::Parent::BEGIN@10
0000s0sTest2::EventFacet::Parent::::initTest2::EventFacet::Parent::init
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Test2::EventFacet::Parent;
2234µs225µs
# spent 23µs (21+2) within Test2::EventFacet::Parent::BEGIN@2 which was called: # once (21µs+2µs) by Test2::Event::BEGIN@21 at line 2
use strict;
# spent 23µs making 1 call to Test2::EventFacet::Parent::BEGIN@2 # spent 2µs making 1 call to strict::import
3244µs257µs
# spent 31µs (5+26) within Test2::EventFacet::Parent::BEGIN@3 which was called: # once (5µs+26µs) by Test2::Event::BEGIN@21 at line 3
use warnings;
# spent 31µs making 1 call to Test2::EventFacet::Parent::BEGIN@3 # spent 26µs making 1 call to warnings::import
4
51500nsour $VERSION = '1.302198';
6
7241µs270µs
# spent 38µs (6+32) within Test2::EventFacet::Parent::BEGIN@7 which was called: # once (6µs+32µs) by Test2::Event::BEGIN@21 at line 7
use Carp qw/confess/;
# spent 38µs making 1 call to Test2::EventFacet::Parent::BEGIN@7 # spent 32µs making 1 call to Exporter::import
8
9222µs17µs
# spent 7µs within Test2::EventFacet::Parent::BEGIN@9 which was called: # once (7µs+0s) by Test2::Event::BEGIN@21 at line 9
BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) }
# spent 7µs making 1 call to Test2::EventFacet::Parent::BEGIN@9
10277µs2149µs
# spent 77µs (5+72) within Test2::EventFacet::Parent::BEGIN@10 which was called: # once (5µs+72µs) by Test2::Event::BEGIN@21 at line 10
use Test2::Util::HashBase qw{-hid -children -buffered -start_stamp -stop_stamp};
# spent 77µs making 1 call to Test2::EventFacet::Parent::BEGIN@10 # spent 72µs making 1 call to Test2::Util::HashBase::import
11
12sub init {
13 confess "Attribute 'hid' must be set"
14 unless defined $_[0]->{+HID};
15
16 $_[0]->{+CHILDREN} ||= [];
17}
18
1913µs1;
20
21__END__