← 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/Token/Unmatched.pm
StatementsExecuted 8 statements in 81µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs24µsPPIx::Regexp::Token::Unmatched::::BEGIN@37PPIx::Regexp::Token::Unmatched::BEGIN@37
1118µs12µsPPIx::Regexp::Token::Unmatched::::BEGIN@38PPIx::Regexp::Token::Unmatched::BEGIN@38
1117µs443µsPPIx::Regexp::Token::Unmatched::::BEGIN@40PPIx::Regexp::Token::Unmatched::BEGIN@40
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::Token::Unmatched - Represent an unmatched right bracket
4
5=head1 SYNOPSIS
6
7 use PPIx::Regexp::Dumper;
8 PPIx::Regexp::Dumper->new( 'qr{)}smx' )
9 ->print();
10
11=head1 INHERITANCE
12
13C<PPIx::Regexp::Token::Unmatched> is a
14L<PPIx::Regexp::Token|PPIx::Regexp::Token>.
15
16C<PPIx::Regexp::Token::Unmatched> has no descendants.
17
18=head1 DESCRIPTION
19
20This class is used to represent an unmatched right bracket of any sort -
21parenthesis, square bracket, curly bracket, or whatever.
22
23This class is not generated by the tokenizer; instead the lexer
24reblesses a
25L<PPIx::Regexp::Token::Structure|PPIx::Regexp::Token::Structure> into it
26when it is found to be unmatched.
27
28=head1 METHODS
29
30This class provides no public methods beyond those provided by its
31superclass.
32
33=cut
34
35package PPIx::Regexp::Token::Unmatched;
36
37221µs236µs
# spent 24µs (13+12) within PPIx::Regexp::Token::Unmatched::BEGIN@37 which was called: # once (13µs+12µs) by PPIx::Regexp::Lexer::BEGIN@60 at line 37
use strict;
# spent 24µs making 1 call to PPIx::Regexp::Token::Unmatched::BEGIN@37 # spent 12µs making 1 call to strict::import
38221µs217µs
# spent 12µs (8+5) within PPIx::Regexp::Token::Unmatched::BEGIN@38 which was called: # once (8µs+5µs) by PPIx::Regexp::Lexer::BEGIN@60 at line 38
use warnings;
# spent 12µs making 1 call to PPIx::Regexp::Token::Unmatched::BEGIN@38 # spent 5µs making 1 call to warnings::import
39
40236µs2879µs
# spent 443µs (7+436) within PPIx::Regexp::Token::Unmatched::BEGIN@40 which was called: # once (7µs+436µs) by PPIx::Regexp::Lexer::BEGIN@60 at line 40
use base qw{ PPIx::Regexp::Token };
# spent 443µs making 1 call to PPIx::Regexp::Token::Unmatched::BEGIN@40 # spent 436µs making 1 call to base::import
41
421500nsour $VERSION = '0.036';
43
44# Return true if the token can be quantified, and false otherwise
45# sub can_be_quantified { return };
46
4712µs1;
48
49__END__