← 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:14 2021

Filename/usr/local/lib/perl5/5.32/JSON/PP/Boolean.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sJSON::PP::Boolean::::BEGIN@3JSON::PP::Boolean::BEGIN@3
0000s0sJSON::PP::Boolean::::__ANON__[:7]JSON::PP::Boolean::__ANON__[:7]
0000s0sJSON::PP::Boolean::::__ANON__[:8]JSON::PP::Boolean::__ANON__[:8]
0000s0sJSON::PP::Boolean::::__ANON__[:9]JSON::PP::Boolean::__ANON__[:9]
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package JSON::PP::Boolean;
2
3use strict;
4require overload;
5local $^W;
6overload::import('overload',
7 "0+" => sub { ${$_[0]} },
8 "++" => sub { $_[0] = ${$_[0]} + 1 },
9 "--" => sub { $_[0] = ${$_[0]} - 1 },
10 fallback => 1,
11);
12
13$JSON::PP::Boolean::VERSION = '4.04';
14
151;
16
17__END__