Filename | /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPI/Statement/Unknown.pm |
Statements | Executed 9 statements in 108µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 12µs | 23µs | BEGIN@35 | PPI::Statement::Unknown::
1 | 1 | 1 | 8µs | 8µs | BEGIN@39 | PPI::Statement::Unknown::
1 | 1 | 1 | 6µs | 32µs | BEGIN@38 | PPI::Statement::Unknown::
1 | 1 | 1 | 3µs | 3µs | BEGIN@36 | PPI::Statement::Unknown::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package PPI::Statement::Unknown; | ||||
2 | |||||
3 | =pod | ||||
4 | |||||
5 | =head1 NAME | ||||
6 | |||||
7 | PPI::Statement::Unknown - An unknown or transient statement | ||||
8 | |||||
9 | =head1 INHERITANCE | ||||
10 | |||||
11 | PPI::Statement::Unknown | ||||
12 | isa PPI::Statement | ||||
13 | isa PPI::Node | ||||
14 | isa PPI::Element | ||||
15 | |||||
16 | =head1 DESCRIPTION | ||||
17 | |||||
18 | The C<PPI::Statement::Unknown> class is used primarily during the lexing | ||||
19 | process to hold elements that are known to be statement, but for which | ||||
20 | the exact C<type> of statement is as yet unknown, and requires further | ||||
21 | tokens in order to resolve the correct type. | ||||
22 | |||||
23 | They should not exist in a fully parse B<valid> document, and if any | ||||
24 | exists they indicate either a problem in Document, or possibly (by | ||||
25 | allowing it to get through unresolved) a bug in L<PPI::Lexer>. | ||||
26 | |||||
27 | =head1 METHODS | ||||
28 | |||||
29 | C<PPI::Statement::Unknown> has no additional methods beyond the | ||||
30 | default ones provided by L<PPI::Statement>, L<PPI::Node> and | ||||
31 | L<PPI::Element>. | ||||
32 | |||||
33 | =cut | ||||
34 | |||||
35 | 2 | 19µs | 2 | 34µs | # spent 23µs (12+11) within PPI::Statement::Unknown::BEGIN@35 which was called:
# once (12µs+11µs) by PPI::Statement::BEGIN@174 at line 35 # spent 23µs making 1 call to PPI::Statement::Unknown::BEGIN@35
# spent 11µs making 1 call to strict::import |
36 | 2 | 18µs | 1 | 3µs | # spent 3µs within PPI::Statement::Unknown::BEGIN@36 which was called:
# once (3µs+0s) by PPI::Statement::BEGIN@174 at line 36 # spent 3µs making 1 call to PPI::Statement::Unknown::BEGIN@36 |
37 | |||||
38 | 2 | 31µs | 2 | 58µs | # spent 32µs (6+26) within PPI::Statement::Unknown::BEGIN@38 which was called:
# once (6µs+26µs) by PPI::Statement::BEGIN@174 at line 38 # spent 32µs making 1 call to PPI::Statement::Unknown::BEGIN@38
# spent 26µs making 1 call to vars::import |
39 | # spent 8µs within PPI::Statement::Unknown::BEGIN@39 which was called:
# once (8µs+0s) by PPI::Statement::BEGIN@174 at line 42 | ||||
40 | 1 | 300ns | $VERSION = '1.215'; | ||
41 | 1 | 8µs | @ISA = 'PPI::Statement'; | ||
42 | 1 | 31µs | 1 | 8µs | } # spent 8µs making 1 call to PPI::Statement::Unknown::BEGIN@39 |
43 | |||||
44 | # If one of these ends up in the final document, | ||||
45 | # we're pretty much screwed. Just call it a day. | ||||
46 | sub _complete () { 1 } | ||||
47 | |||||
48 | 1 | 2µs | 1; | ||
49 | |||||
50 | =pod | ||||
51 | |||||
52 | =head1 SUPPORT | ||||
53 | |||||
54 | See the L<support section|PPI/SUPPORT> in the main module. | ||||
55 | |||||
56 | =head1 AUTHOR | ||||
57 | |||||
58 | Adam Kennedy E<lt>adamk@cpan.orgE<gt> | ||||
59 | |||||
60 | =head1 COPYRIGHT | ||||
61 | |||||
62 | Copyright 2001 - 2011 Adam Kennedy. | ||||
63 | |||||
64 | This program is free software; you can redistribute | ||||
65 | it and/or modify it under the same terms as Perl itself. | ||||
66 | |||||
67 | The full text of the license can be found in the | ||||
68 | LICENSE file included with this module. | ||||
69 | |||||
70 | =cut |