← 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/Unknown.pm
StatementsExecuted 8 statements in 78µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs27µsPPIx::Regexp::Structure::Unknown::::BEGIN@32PPIx::Regexp::Structure::Unknown::BEGIN@32
1118µs12µsPPIx::Regexp::Structure::Unknown::::BEGIN@33PPIx::Regexp::Structure::Unknown::BEGIN@33
1117µs58µsPPIx::Regexp::Structure::Unknown::::BEGIN@35PPIx::Regexp::Structure::Unknown::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::Unknown - Represent an unknown structure.
4
5=head1 SYNOPSIS
6
7 use PPIx::Regexp::Dumper;
8 PPIx::Regexp::Dumper->new( 'qr{(?(foo)bar|baz|burfle)}smx' )
9 ->print();
10
11=head1 INHERITANCE
12
13C<PPIx::Regexp::Structure::Unknown> is a
14L<PPIx::Regexp::Structure|PPIx::Regexp::Structure>.
15
16C<PPIx::Regexp::Structure::Unknown> has no descendants.
17
18=head1 DESCRIPTION
19
20This class is used for a structure which the lexer recognizes as being
21improperly constructed.
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::Unknown;
31
32221µs240µs
# spent 27µs (15+12) within PPIx::Regexp::Structure::Unknown::BEGIN@32 which was called: # once (15µs+12µs) by PPIx::Regexp::Lexer::BEGIN@59 at line 32
use strict;
# spent 27µs making 1 call to PPIx::Regexp::Structure::Unknown::BEGIN@32 # spent 12µs making 1 call to strict::import
33221µs217µs
# spent 12µs (8+5) within PPIx::Regexp::Structure::Unknown::BEGIN@33 which was called: # once (8µs+5µs) by PPIx::Regexp::Lexer::BEGIN@59 at line 33
use warnings;
# spent 12µs making 1 call to PPIx::Regexp::Structure::Unknown::BEGIN@33 # spent 5µs making 1 call to warnings::import
34
35233µs2110µs
# spent 58µs (7+52) within PPIx::Regexp::Structure::Unknown::BEGIN@35 which was called: # once (7µs+52µs) by PPIx::Regexp::Lexer::BEGIN@59 at line 35
use base qw{ PPIx::Regexp::Structure };
# spent 58µs making 1 call to PPIx::Regexp::Structure::Unknown::BEGIN@35 # spent 52µs making 1 call to base::import
36
371600nsour $VERSION = '0.036';
38
3912µs1;
40
41__END__