← Index
Performance Profile   « block view • line view • sub view »
For t/test-parsing
  Run on Sun Nov 14 09:49:57 2010
Reported on Sun Nov 14 09:50:09 2010

File /usr/local/lib/perl/5.10.0/Moose/Deprecated.pm
Statements Executed 13
Total Time 0.0002222 seconds
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sMoose::Deprecated::::BEGINMoose::Deprecated::BEGIN
LineStmts.Exclusive
Time
Avg.Code
1package Moose::Deprecated;
2
3326µs9µsuse strict;
# spent 10µs making 1 call to strict::import
43112µs37µsuse warnings;
# spent 23µs making 1 call to warnings::import
5
61700ns700nsour $VERSION = '1.15';
7130µs30µs$VERSION = eval $VERSION;
81600ns600nsour $AUTHORITY = 'cpan:STEVAN';
9
10use Package::DeprecationManager -deprecations => {
# spent 222µs making 1 call to Package::DeprecationManager::import
11 'default is for Native Trait' => '1.14',
12 'default default for Native Trait' => '1.14',
13 'coerce without coercion' => '1.08',
14 'pre-0.94 MetaRole API' => '0.94',
15 'alias or excludes' => '0.89',
16 'Role type' => '0.84',
17 'subtype without sugar' => '0.72',
18 'type without sugar' => '0.72',
19 'Moose::init_meta' => '0.56',
20 },
21 -ignore => [
22 qw( Moose
23 Moose::Exporter
24 Moose::Meta::Attribute
25 Moose::Meta::Class
26 Moose::Util::MetaRole
27 )
28 ],
29349µs16µs ;
30
3114µs4µs1;
32
33__END__
34
35=pod
36
37=head1 NAME
38
39Moose::Deprecated - Manages deprecation warnings for Moose
40
41=head1 DESCRIPTION
42
43 use Moose::Deprecated -api_version => $version;
44
45=head1 FUNCTIONS
46
47This module manages deprecation warnings for features that have been
48deprecated in Moose.
49
50If you specify C<< -api_version => $version >>, you can use deprecated features
51without warnings. Note that this special treatment is limited to the package
52that loads C<Moose::Deprecated>.
53
54=head1 AUTHORS
55
56Dave Rolsky E<lt>autarch@urth.orgE<gt>
57
58=head1 COPYRIGHT AND LICENSE
59
60Copyright 2006-2010 by Infinity Interactive, Inc.
61
62L<http://www.iinteractive.com>
63
64This library is free software; you can redistribute it and/or modify
65it under the same terms as Perl itself.
66
67=cut