← 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/Given.pm
StatementsExecuted 9 statements in 111µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs26µsPPI::Structure::Given::::BEGIN@36PPI::Structure::Given::BEGIN@36
11112µs12µsPPI::Structure::Given::::BEGIN@40PPI::Structure::Given::BEGIN@40
1116µs44µsPPI::Structure::Given::::BEGIN@39PPI::Structure::Given::BEGIN@39
1114µs4µsPPI::Structure::Given::::BEGIN@37PPI::Structure::Given::BEGIN@37
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::Given;
2
3=pod
4
5=head1 NAME
6
7PPI::Structure::Given - Circular braces for a switch statement
8
9=head1 SYNOPSIS
10
11 given ( something ) {
12 ...
13 }
14
15=head1 INHERITANCE
16
17 PPI::Structure::Given
18 isa PPI::Structure
19 isa PPI::Node
20 isa PPI::Element
21
22=head1 DESCRIPTION
23
24C<PPI::Structure::Given> is the class used for circular braces that
25contain the thing to be matched in a switch statement.
26
27=head1 METHODS
28
29C<PPI::Structure::Given> has no methods beyond those provided by the
30standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods.
31
32Got any ideas for methods? Submit a report to rt.cpan.org!
33
34=cut
35
36221µs238µs
# spent 26µs (15+12) within PPI::Structure::Given::BEGIN@36 which was called: # once (15µs+12µs) by PPI::Structure::BEGIN@108 at line 36
use strict;
# spent 26µs making 1 call to PPI::Structure::Given::BEGIN@36 # spent 12µs making 1 call to strict::import
37219µs14µs
# spent 4µs within PPI::Structure::Given::BEGIN@37 which was called: # once (4µs+0s) by PPI::Structure::BEGIN@108 at line 37
use PPI::Structure ();
# spent 4µs making 1 call to PPI::Structure::Given::BEGIN@37
38
39228µs281µs
# spent 44µs (6+38) within PPI::Structure::Given::BEGIN@39 which was called: # once (6µs+38µs) by PPI::Structure::BEGIN@108 at line 39
use vars qw{$VERSION @ISA};
# spent 44µs making 1 call to PPI::Structure::Given::BEGIN@39 # spent 38µs making 1 call to vars::import
40
# spent 12µs within PPI::Structure::Given::BEGIN@40 which was called: # once (12µs+0s) by PPI::Structure::BEGIN@108 at line 43
BEGIN {
411400ns $VERSION = '1.215';
42112µs @ISA = 'PPI::Structure';
43129µs112µs}
# spent 12µs making 1 call to PPI::Structure::Given::BEGIN@40
44
4512µs1;
46
47=pod
48
49=head1 SUPPORT
50
51See the L<support section|PPI/SUPPORT> in the main module.
52
53=head1 AUTHOR
54
55Adam Kennedy E<lt>adamk@cpan.orgE<gt>
56
57=head1 COPYRIGHT
58
59Copyright 2001 - 2011 Adam Kennedy.
60
61This program is free software; you can redistribute
62it and/or modify it under the same terms as Perl itself.
63
64The full text of the license can be found in the
65LICENSE file included with this module.
66
67=cut