← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:23:30 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux/Class/MOP/Deprecated.pm
StatementsExecuted 13 statements in 138µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsClass::MOP::Deprecated::::BEGIN@2Class::MOP::Deprecated::BEGIN@2
1119µs155µsClass::MOP::Deprecated::::BEGIN@12Class::MOP::Deprecated::BEGIN@12
1118µs13µsClass::MOP::Deprecated::::BEGIN@9Class::MOP::Deprecated::BEGIN@9
1118µs26µsClass::MOP::Deprecated::::BEGIN@10Class::MOP::Deprecated::BEGIN@10
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Class::MOP::Deprecated;
2
# spent 12µs within Class::MOP::Deprecated::BEGIN@2 which was called: # once (12µs+0s) by Moose::Exporter::BEGIN@13 at line 4
BEGIN {
3114µs $Class::MOP::Deprecated::AUTHORITY = 'cpan:STEVAN';
4130µs112µs}
# spent 12µs making 1 call to Class::MOP::Deprecated::BEGIN@2
5{
621µs $Class::MOP::Deprecated::VERSION = '2.0602';
7}
8
9319µs218µs
# spent 13µs (8+5) within Class::MOP::Deprecated::BEGIN@9 which was called: # once (8µs+5µs) by Moose::Exporter::BEGIN@13 at line 9
use strict;
# spent 13µs making 1 call to Class::MOP::Deprecated::BEGIN@9 # spent 5µs making 1 call to strict::import
10331µs245µs
# spent 26µs (8+19) within Class::MOP::Deprecated::BEGIN@10 which was called: # once (8µs+19µs) by Moose::Exporter::BEGIN@13 at line 10
use warnings;
# spent 26µs making 1 call to Class::MOP::Deprecated::BEGIN@10 # spent 18µs making 1 call to warnings::import
11
1217µs1146µs
# spent 155µs (9+146) within Class::MOP::Deprecated::BEGIN@12 which was called: # once (9µs+146µs) by Moose::Exporter::BEGIN@13 at line 13
use Package::DeprecationManager -deprecations => {
# spent 146µs making 1 call to Package::DeprecationManager::import
13233µs1155µs};
# spent 155µs making 1 call to Class::MOP::Deprecated::BEGIN@12
14
1513µs1;
16
17# ABSTRACT: Manages deprecation warnings for Class::MOP
18
- -
21=pod
22
23=head1 NAME
24
25Class::MOP::Deprecated - Manages deprecation warnings for Class::MOP
26
27=head1 VERSION
28
29version 2.0602
30
31=head1 DESCRIPTION
32
33 use Class::MOP::Deprecated -api_version => $version;
34
35=head1 FUNCTIONS
36
37This module manages deprecation warnings for features that have been
38deprecated in Class::MOP.
39
40If you specify C<< -api_version => $version >>, you can use deprecated features
41without warnings. Note that this special treatment is limited to the package
42that loads C<Class::MOP::Deprecated>.
43
44=head1 AUTHOR
45
46Moose is maintained by the Moose Cabal, along with the help of many contributors. See L<Moose/CABAL> and L<Moose/CONTRIBUTORS> for details.
47
48=head1 COPYRIGHT AND LICENSE
49
50This software is copyright (c) 2012 by Infinity Interactive, Inc..
51
52This is free software; you can redistribute it and/or modify it under
53the same terms as the Perl 5 programming language system itself.
54
55=cut
56
57
58__END__