| Filename | /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPI/Structure/Subscript.pm |
| Statements | Executed 9 statements in 97µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 11µs | 26µs | PPI::Structure::Subscript::BEGIN@41 |
| 1 | 1 | 1 | 8µs | 8µs | PPI::Structure::Subscript::BEGIN@45 |
| 1 | 1 | 1 | 6µs | 34µs | PPI::Structure::Subscript::BEGIN@44 |
| 1 | 1 | 1 | 3µs | 3µs | PPI::Structure::Subscript::BEGIN@42 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package PPI::Structure::Subscript; | ||||
| 2 | |||||
| 3 | =pod | ||||
| 4 | |||||
| 5 | =head1 NAME | ||||
| 6 | |||||
| 7 | PPI::Structure::Subscript - Braces that represent an array or hash subscript | ||||
| 8 | |||||
| 9 | =head1 SYNOPSIS | ||||
| 10 | |||||
| 11 | # The end braces for all of the following are subscripts | ||||
| 12 | $foo->[...] | ||||
| 13 | $foo[...] | ||||
| 14 | $foo{...}[...] | ||||
| 15 | $foo->{...} | ||||
| 16 | $foo{...} | ||||
| 17 | $foo[]{...} | ||||
| 18 | |||||
| 19 | =head1 INHERITANCE | ||||
| 20 | |||||
| 21 | PPI::Structure::Subscript | ||||
| 22 | isa PPI::Structure | ||||
| 23 | isa PPI::Node | ||||
| 24 | isa PPI::Element | ||||
| 25 | |||||
| 26 | =head1 DESCRIPTION | ||||
| 27 | |||||
| 28 | C<PPI::Structure::Subscript> is the class used for square and curly | ||||
| 29 | braces that specify one element of an array or hash (or a slice/subset | ||||
| 30 | of an array or hash) | ||||
| 31 | |||||
| 32 | =head1 METHODS | ||||
| 33 | |||||
| 34 | C<PPI::Structure::Subscript> has no methods beyond those provided by the | ||||
| 35 | standard L<PPI::Structure>, L<PPI::Node> and L<PPI::Element> methods. | ||||
| 36 | |||||
| 37 | Got any ideas for methods? Submit a report to rt.cpan.org! | ||||
| 38 | |||||
| 39 | =cut | ||||
| 40 | |||||
| 41 | 2 | 21µs | 2 | 40µs | # spent 26µs (11+15) within PPI::Structure::Subscript::BEGIN@41 which was called:
# once (11µs+15µs) by PPI::Structure::BEGIN@110 at line 41 # spent 26µs making 1 call to PPI::Structure::Subscript::BEGIN@41
# spent 15µs making 1 call to strict::import |
| 42 | 2 | 19µs | 1 | 3µs | # spent 3µs within PPI::Structure::Subscript::BEGIN@42 which was called:
# once (3µs+0s) by PPI::Structure::BEGIN@110 at line 42 # spent 3µs making 1 call to PPI::Structure::Subscript::BEGIN@42 |
| 43 | |||||
| 44 | 2 | 28µs | 2 | 61µs | # spent 34µs (6+27) within PPI::Structure::Subscript::BEGIN@44 which was called:
# once (6µs+27µs) by PPI::Structure::BEGIN@110 at line 44 # spent 34µs making 1 call to PPI::Structure::Subscript::BEGIN@44
# spent 27µs making 1 call to vars::import |
| 45 | # spent 8µs within PPI::Structure::Subscript::BEGIN@45 which was called:
# once (8µs+0s) by PPI::Structure::BEGIN@110 at line 48 | ||||
| 46 | 1 | 400ns | $VERSION = '1.215'; | ||
| 47 | 1 | 8µs | @ISA = 'PPI::Structure'; | ||
| 48 | 1 | 18µs | 1 | 8µs | } # spent 8µs making 1 call to PPI::Structure::Subscript::BEGIN@45 |
| 49 | |||||
| 50 | 1 | 2µs | 1; | ||
| 51 | |||||
| 52 | =pod | ||||
| 53 | |||||
| 54 | =head1 SUPPORT | ||||
| 55 | |||||
| 56 | See the L<support section|PPI/SUPPORT> in the main module. | ||||
| 57 | |||||
| 58 | =head1 AUTHOR | ||||
| 59 | |||||
| 60 | Adam Kennedy E<lt>adamk@cpan.orgE<gt> | ||||
| 61 | |||||
| 62 | =head1 COPYRIGHT | ||||
| 63 | |||||
| 64 | Copyright 2001 - 2011 Adam Kennedy. | ||||
| 65 | |||||
| 66 | This program is free software; you can redistribute | ||||
| 67 | it and/or modify it under the same terms as Perl itself. | ||||
| 68 | |||||
| 69 | The full text of the license can be found in the | ||||
| 70 | LICENSE file included with this module. | ||||
| 71 | |||||
| 72 | =cut |