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

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPIx/Regexp/Structure/Subexpression.pm
StatementsExecuted 8 statements in 76µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs26µsPPIx::Regexp::Structure::Subexpression::::BEGIN@32PPIx::Regexp::Structure::Subexpression::BEGIN@32
1118µs12µsPPIx::Regexp::Structure::Subexpression::::BEGIN@33PPIx::Regexp::Structure::Subexpression::BEGIN@33
1117µs59µsPPIx::Regexp::Structure::Subexpression::::BEGIN@35PPIx::Regexp::Structure::Subexpression::BEGIN@35
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1=head1 NAME
2
3PPIx::Regexp::Structure::Subexpression - Represent an independent subexpression
4
5=head1 SYNOPSIS
6
7 use PPIx::Regexp::Dumper;
8 PPIx::Regexp::Dumper->new( 'qr{foo(?>bar)}smx' )
9 ->print();
10
11=head1 INHERITANCE
12
13C<PPIx::Regexp::Structure::Subexpression> is a
14L<PPIx::Regexp::Structure|PPIx::Regexp::Structure>.
15
16C<PPIx::Regexp::Structure::Subexpression> has no descendants.
17
18=head1 DESCRIPTION
19
20This class represents an independent subexpression which must (says
21F<perlre>) match at the current location.
22
23=head1 METHODS
24
25This class provides no public methods beyond those provided by its
26superclass.
27
28=cut
29
30package PPIx::Regexp::Structure::Subexpression;
31
32224µs237µs
# spent 26µs (14+12) within PPIx::Regexp::Structure::Subexpression::BEGIN@32 which was called: # once (14µs+12µs) by PPIx::Regexp::Lexer::BEGIN@50 at line 32
use strict;
# spent 26µs making 1 call to PPIx::Regexp::Structure::Subexpression::BEGIN@32 # spent 12µs making 1 call to strict::import
33220µs216µs
# spent 12µs (8+4) within PPIx::Regexp::Structure::Subexpression::BEGIN@33 which was called: # once (8µs+4µs) by PPIx::Regexp::Lexer::BEGIN@50 at line 33
use warnings;
# spent 12µs making 1 call to PPIx::Regexp::Structure::Subexpression::BEGIN@33 # spent 4µs making 1 call to warnings::import
34
35229µs2111µs
# spent 59µs (7+52) within PPIx::Regexp::Structure::Subexpression::BEGIN@35 which was called: # once (7µs+52µs) by PPIx::Regexp::Lexer::BEGIN@50 at line 35
use base qw{ PPIx::Regexp::Structure };
# spent 59µs making 1 call to PPIx::Regexp::Structure::Subexpression::BEGIN@35 # spent 52µs making 1 call to base::import
36
371500nsour $VERSION = '0.036';
38
3912µs1;
40
41__END__