← 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:11 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPI/Statement/End.pm
StatementsExecuted 9 statements in 122µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs23µsPPI::Statement::End::::BEGIN@47PPI::Statement::End::BEGIN@47
1118µs8µsPPI::Statement::End::::BEGIN@51PPI::Statement::End::BEGIN@51
1116µs34µsPPI::Statement::End::::BEGIN@50PPI::Statement::End::BEGIN@50
1113µs3µsPPI::Statement::End::::BEGIN@48PPI::Statement::End::BEGIN@48
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package PPI::Statement::End;
2
3=pod
4
5=head1 NAME
6
7PPI::Statement::End - Content after the __END__ of a module
8
9=head1 SYNOPSIS
10
11 # This is normal content
12
13 __END__
14
15 This is part of an PPI::Statement::End statement
16
17 =pod
18
19 This is not part of the ::End statement, it's POD
20
21 =cut
22
23 This is another PPI::Statement::End statement
24
25=head1 INHERITANCE
26
27 PPI::Statement::End
28 isa PPI::Statement
29 isa PPI::Node
30 isa PPI::Element
31
32=head1 DESCRIPTION
33
34C<PPI::Statement::End> is a utility class designed to serve as a contained
35for all of the content after the __END__ tag in a file.
36
37It doesn't cover the ENTIRE of the __END__ section, and can be interspersed
38with L<PPI::Token::Pod> tokens.
39
40=head1 METHODS
41
42C<PPI::Statement::End> has no additional methods beyond the default ones
43provided by L<PPI::Statement>, L<PPI::Node> and L<PPI::Element>.
44
45=cut
46
47218µs234µs
# spent 23µs (11+11) within PPI::Statement::End::BEGIN@47 which was called: # once (11µs+11µs) by PPI::Statement::BEGIN@165 at line 47
use strict;
# spent 23µs making 1 call to PPI::Statement::End::BEGIN@47 # spent 11µs making 1 call to strict::import
48227µs13µs
# spent 3µs within PPI::Statement::End::BEGIN@48 which was called: # once (3µs+0s) by PPI::Statement::BEGIN@165 at line 48
use PPI::Statement ();
# spent 3µs making 1 call to PPI::Statement::End::BEGIN@48
49
50232µs262µs
# spent 34µs (6+28) within PPI::Statement::End::BEGIN@50 which was called: # once (6µs+28µs) by PPI::Statement::BEGIN@165 at line 50
use vars qw{$VERSION @ISA};
# spent 34µs making 1 call to PPI::Statement::End::BEGIN@50 # spent 28µs making 1 call to vars::import
51
# spent 8µs within PPI::Statement::End::BEGIN@51 which was called: # once (8µs+0s) by PPI::Statement::BEGIN@165 at line 54
BEGIN {
521300ns $VERSION = '1.215';
5319µs @ISA = 'PPI::Statement';
54134µs18µs}
# spent 8µs making 1 call to PPI::Statement::End::BEGIN@51
55
56# Once we have an __END__ we're done
57sub _complete () { 1 }
58
5912µs1;
60
61=pod
62
63=head1 SUPPORT
64
65See the L<support section|PPI/SUPPORT> in the main module.
66
67=head1 AUTHOR
68
69Adam Kennedy E<lt>adamk@cpan.orgE<gt>
70
71=head1 COPYRIGHT
72
73Copyright 2001 - 2011 Adam Kennedy.
74
75This program is free software; you can redistribute
76it and/or modify it under the same terms as Perl itself.
77
78The full text of the license can be found in the
79LICENSE file included with this module.
80
81=cut