Filename | /2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux/Moose/Meta/Object/Trait.pm |
Statements | Executed 7 statements in 170µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 10µs | 10µs | BEGIN@3 | Moose::Meta::Object::Trait::
1 | 1 | 1 | 7µs | 38µs | BEGIN@10 | Moose::Meta::Object::Trait::
0 | 0 | 0 | 0s | 0s | _get_compatible_metaclass | Moose::Meta::Object::Trait::
0 | 0 | 0 | 0s | 0s | _get_compatible_metaclass_by_role_reconciliation | Moose::Meta::Object::Trait::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | |||||
2 | package Moose::Meta::Object::Trait; | ||||
3 | # spent 10µs within Moose::Meta::Object::Trait::BEGIN@3 which was called:
# once (10µs+0s) by Module::Runtime::require_module at line 5 | ||||
4 | 1 | 15µs | $Moose::Meta::Object::Trait::AUTHORITY = 'cpan:STEVAN'; | ||
5 | 1 | 30µs | 1 | 10µs | } # spent 10µs making 1 call to Moose::Meta::Object::Trait::BEGIN@3 |
6 | { | ||||
7 | 2 | 1µs | $Moose::Meta::Object::Trait::VERSION = '2.0602'; | ||
8 | } | ||||
9 | |||||
10 | 3 | 121µs | 2 | 70µs | # spent 38µs (7+31) within Moose::Meta::Object::Trait::BEGIN@10 which was called:
# once (7µs+31µs) by Module::Runtime::require_module at line 10 # spent 38µs making 1 call to Moose::Meta::Object::Trait::BEGIN@10
# spent 31µs making 1 call to Exporter::import |
11 | |||||
12 | sub _get_compatible_metaclass { | ||||
13 | my $orig = shift; | ||||
14 | my $self = shift; | ||||
15 | return $self->$orig(@_) | ||||
16 | || $self->_get_compatible_metaclass_by_role_reconciliation(@_); | ||||
17 | } | ||||
18 | |||||
19 | sub _get_compatible_metaclass_by_role_reconciliation { | ||||
20 | my $self = shift; | ||||
21 | my ($other_name) = @_; | ||||
22 | my $meta_name = blessed($self) ? $self->_real_ref_name : $self; | ||||
23 | |||||
24 | return unless Moose::Util::_classes_differ_by_roles_only( | ||||
25 | $meta_name, $other_name | ||||
26 | ); | ||||
27 | |||||
28 | return Moose::Util::_reconcile_roles_for_metaclass( | ||||
29 | $meta_name, $other_name | ||||
30 | ); | ||||
31 | } | ||||
32 | |||||
33 | 1 | 3µs | 1; | ||
34 | |||||
35 | # ABSTRACT: Some overrides for L<Class::MOP::Object> functionality | ||||
36 | |||||
- - | |||||
39 | =pod | ||||
40 | |||||
41 | =head1 NAME | ||||
42 | |||||
43 | Moose::Meta::Object::Trait - Some overrides for L<Class::MOP::Object> functionality | ||||
44 | |||||
45 | =head1 VERSION | ||||
46 | |||||
47 | version 2.0602 | ||||
48 | |||||
49 | =head1 DESCRIPTION | ||||
50 | |||||
51 | This module is entirely private, you shouldn't ever need to interact with | ||||
52 | it directly. | ||||
53 | |||||
54 | =head1 BUGS | ||||
55 | |||||
56 | See L<Moose/BUGS> for details on reporting bugs. | ||||
57 | |||||
58 | =head1 AUTHOR | ||||
59 | |||||
60 | Moose is maintained by the Moose Cabal, along with the help of many contributors. See L<Moose/CABAL> and L<Moose/CONTRIBUTORS> for details. | ||||
61 | |||||
62 | =head1 COPYRIGHT AND LICENSE | ||||
63 | |||||
64 | This software is copyright (c) 2012 by Infinity Interactive, Inc.. | ||||
65 | |||||
66 | This is free software; you can redistribute it and/or modify it under | ||||
67 | the same terms as the Perl 5 programming language system itself. | ||||
68 | |||||
69 | =cut | ||||
70 | |||||
71 | |||||
72 | __END__ |