← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:12 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPI/Structure/Condition.pm
StatementsExecuted 9 statements in 115µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs13µsPPI::Structure::Condition::::BEGIN@44PPI::Structure::Condition::BEGIN@44
11112µs24µsPPI::Structure::Condition::::BEGIN@40PPI::Structure::Condition::BEGIN@40
1116µs35µsPPI::Structure::Condition::::BEGIN@43PPI::Structure::Condition::BEGIN@43
1113µs3µsPPI::Structure::Condition::::BEGIN@41PPI::Structure::Condition::BEGIN@41
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package PPI::Structure::Condition;
2
3=pod
4
5=head1 NAME
6
7PPI::Structure::Condition - Round braces for boolean context conditions
8
9=head1 SYNOPSIS
10
11 if ( condition ) {
12 ...
13 }
14
15 while ( condition ) {
16 ...
17 }
18
19=head1 INHERITANCE
20
21 PPI::Structure::Condition
22 isa PPI::Structure
23 isa PPI::Node
24 isa PPI::Element
25
26=head1 DESCRIPTION
27
28C<PPI::Structure::Condition> is the class used for all round braces
29that represent boolean contexts used in various conditions.
30
31=head1 METHODS
32
33C<PPI::Structure::Condition> has no methods beyond those provided by
34the standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
35
36Got any ideas for methods? Submit a report to rt.cpan.org!
37
38=cut
39
40220µs236µs
# spent 24µs (12+12) within PPI::Structure::Condition::BEGIN@40 which was called: # once (12µs+12µs) by PPI::Structure::BEGIN@105 at line 40
use strict;
# spent 24µs making 1 call to PPI::Structure::Condition::BEGIN@40 # spent 12µs making 1 call to strict::import
41223µs13µs
# spent 3µs within PPI::Structure::Condition::BEGIN@41 which was called: # once (3µs+0s) by PPI::Structure::BEGIN@105 at line 41
use PPI::Structure ();
# spent 3µs making 1 call to PPI::Structure::Condition::BEGIN@41
42
43229µs263µs
# spent 35µs (6+28) within PPI::Structure::Condition::BEGIN@43 which was called: # once (6µs+28µs) by PPI::Structure::BEGIN@105 at line 43
use vars qw{$VERSION @ISA};
# spent 35µs making 1 call to PPI::Structure::Condition::BEGIN@43 # spent 28µs making 1 call to vars::import
44
# spent 13µs within PPI::Structure::Condition::BEGIN@44 which was called: # once (13µs+0s) by PPI::Structure::BEGIN@105 at line 47
BEGIN {
451300ns $VERSION = '1.215';
46122µs @ISA = 'PPI::Structure';
47119µs113µs}
# spent 13µs making 1 call to PPI::Structure::Condition::BEGIN@44
48
4912µs1;
50
51=pod
52
53=head1 SUPPORT
54
55See the L<support section|PPI/SUPPORT> in the main module.
56
57=head1 AUTHOR
58
59Adam Kennedy E<lt>adamk@cpan.orgE<gt>
60
61=head1 COPYRIGHT
62
63Copyright 2001 - 2011 Adam Kennedy.
64
65This program is free software; you can redistribute
66it and/or modify it under the same terms as Perl itself.
67
68The full text of the license can be found in the
69LICENSE file included with this module.
70
71=cut