← 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/Assertion.pm
StatementsExecuted 8 statements in 75µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs25µsPPIx::Regexp::Structure::Assertion::::BEGIN@32PPIx::Regexp::Structure::Assertion::BEGIN@32
1117µs12µsPPIx::Regexp::Structure::Assertion::::BEGIN@33PPIx::Regexp::Structure::Assertion::BEGIN@33
1117µs61µsPPIx::Regexp::Structure::Assertion::::BEGIN@35PPIx::Regexp::Structure::Assertion::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::Assertion - Represent a parenthesized assertion
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::Assertion> is a
14L<PPIx::Regexp::Structure|PPIx::Regexp::Structure>.
15
16C<PPIx::Regexp::Structure::Assertion> has no descendants.
17
18=head1 DESCRIPTION
19
20This class represents one of the parenthesized assertions, either look
21ahead or look behind, and either positive or negative.
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::Assertion;
31
32220µs238µs
# spent 25µs (13+13) within PPIx::Regexp::Structure::Assertion::BEGIN@32 which was called: # once (13µs+13µs) by PPIx::Regexp::Lexer::BEGIN@45 at line 32
use strict;
# spent 25µs making 1 call to PPIx::Regexp::Structure::Assertion::BEGIN@32 # spent 13µs making 1 call to strict::import
33221µs217µs
# spent 12µs (7+5) within PPIx::Regexp::Structure::Assertion::BEGIN@33 which was called: # once (7µs+5µs) by PPIx::Regexp::Lexer::BEGIN@45 at line 33
use warnings;
# spent 12µs making 1 call to PPIx::Regexp::Structure::Assertion::BEGIN@33 # spent 5µs making 1 call to warnings::import
34
35231µs2116µs
# spent 61µs (7+54) within PPIx::Regexp::Structure::Assertion::BEGIN@35 which was called: # once (7µs+54µs) by PPIx::Regexp::Lexer::BEGIN@45 at line 35
use base qw{ PPIx::Regexp::Structure };
# spent 61µs making 1 call to PPIx::Regexp::Structure::Assertion::BEGIN@35 # spent 54µs making 1 call to base::import
36
371500nsour $VERSION = '0.036';
38
3912µs1;
40
41__END__