Filename | /2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/x86_64-linux/Moose/Meta/Instance.pm |
Statements | Executed 17 statements in 146µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 9µs | 9µs | BEGIN@3 | Moose::Meta::Instance::
1 | 1 | 1 | 9µs | 13µs | BEGIN@10 | Moose::Meta::Instance::
1 | 1 | 1 | 8µs | 24µs | BEGIN@11 | Moose::Meta::Instance::
1 | 1 | 1 | 7µs | 86µs | BEGIN@15 | Moose::Meta::Instance::
1 | 1 | 1 | 5µs | 5µs | BEGIN@13 | Moose::Meta::Instance::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | |||||
2 | package Moose::Meta::Instance; | ||||
3 | # spent 9µs within Moose::Meta::Instance::BEGIN@3 which was called:
# once (9µs+0s) by Moose::BEGIN@32 at line 5 | ||||
4 | 1 | 4µs | $Moose::Meta::Instance::AUTHORITY = 'cpan:STEVAN'; | ||
5 | 1 | 24µs | 1 | 9µs | } # spent 9µs making 1 call to Moose::Meta::Instance::BEGIN@3 |
6 | { | ||||
7 | 2 | 900ns | $Moose::Meta::Instance::VERSION = '2.0602'; | ||
8 | } | ||||
9 | |||||
10 | 3 | 18µs | 2 | 18µs | # spent 13µs (9+5) within Moose::Meta::Instance::BEGIN@10 which was called:
# once (9µs+5µs) by Moose::BEGIN@32 at line 10 # spent 13µs making 1 call to Moose::Meta::Instance::BEGIN@10
# spent 5µs making 1 call to strict::import |
11 | 3 | 18µs | 2 | 40µs | # spent 24µs (8+16) within Moose::Meta::Instance::BEGIN@11 which was called:
# once (8µs+16µs) by Moose::BEGIN@32 at line 11 # spent 24µs making 1 call to Moose::Meta::Instance::BEGIN@11
# spent 16µs making 1 call to warnings::import |
12 | |||||
13 | 3 | 19µs | 1 | 5µs | # spent 5µs within Moose::Meta::Instance::BEGIN@13 which was called:
# once (5µs+0s) by Moose::BEGIN@32 at line 13 # spent 5µs making 1 call to Moose::Meta::Instance::BEGIN@13 |
14 | |||||
15 | 3 | 50µs | 2 | 165µs | # spent 86µs (7+79) within Moose::Meta::Instance::BEGIN@15 which was called:
# once (7µs+79µs) by Moose::BEGIN@32 at line 15 # spent 86µs making 1 call to Moose::Meta::Instance::BEGIN@15
# spent 79µs making 1 call to base::import |
16 | |||||
17 | 1 | 3µs | 1 | 1.32ms | Class::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait'); # spent 1.32ms making 1 call to Class::MOP::MiniTrait::apply |
18 | |||||
19 | 1 | 8µs | 1; | ||
20 | |||||
21 | # ABSTRACT: The Moose Instance metaclass | ||||
22 | |||||
- - | |||||
25 | =pod | ||||
26 | |||||
27 | =head1 NAME | ||||
28 | |||||
29 | Moose::Meta::Instance - The Moose Instance metaclass | ||||
30 | |||||
31 | =head1 VERSION | ||||
32 | |||||
33 | version 2.0602 | ||||
34 | |||||
35 | =head1 SYNOPSIS | ||||
36 | |||||
37 | # nothing to see here | ||||
38 | |||||
39 | =head1 DESCRIPTION | ||||
40 | |||||
41 | This class provides the low level data storage abstractions for | ||||
42 | attributes. | ||||
43 | |||||
44 | Using this API directly in your own code violates encapsulation, and | ||||
45 | we recommend that you use the appropriate APIs in | ||||
46 | L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those | ||||
47 | APIs in turn call the methods in this class as appropriate. | ||||
48 | |||||
49 | At present, this is an empty subclass of L<Class::MOP::Instance>, so | ||||
50 | you should see that class for all API details. | ||||
51 | |||||
52 | =head1 INHERITANCE | ||||
53 | |||||
54 | C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>. | ||||
55 | |||||
56 | =head1 BUGS | ||||
57 | |||||
58 | See L<Moose/BUGS> for details on reporting bugs. | ||||
59 | |||||
60 | =head1 AUTHOR | ||||
61 | |||||
62 | Moose is maintained by the Moose Cabal, along with the help of many contributors. See L<Moose/CABAL> and L<Moose/CONTRIBUTORS> for details. | ||||
63 | |||||
64 | =head1 COPYRIGHT AND LICENSE | ||||
65 | |||||
66 | This software is copyright (c) 2012 by Infinity Interactive, Inc.. | ||||
67 | |||||
68 | This is free software; you can redistribute it and/or modify it under | ||||
69 | the same terms as the Perl 5 programming language system itself. | ||||
70 | |||||
71 | =cut | ||||
72 | |||||
73 | |||||
74 | __END__ |