← 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:12 2010

File /usr/local/lib/perl/5.10.0/Moose/Meta/Instance.pm
Statements Executed 17
Total Time 0.0002205 seconds
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sMoose::Meta::Instance::::BEGINMoose::Meta::Instance::BEGIN
LineStmts.Exclusive
Time
Avg.Code
1
2package Moose::Meta::Instance;
3
4326µs9µsuse strict;
# spent 11µs making 1 call to strict::import
5366µs22µsuse warnings;
# spent 28µs making 1 call to warnings::import
6
71800ns800nsour $VERSION = '1.15';
8126µs26µs$VERSION = eval $VERSION;
91600ns600nsour $AUTHORITY = 'cpan:STEVAN';
10
11339µs13µsuse Class::MOP::MiniTrait;
# spent 15µs making 1 call to import
12
13345µs15µsuse base "Class::MOP::Instance";
# spent 81µs making 1 call to base::import
14
1518µs8µsClass::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait');
# spent 2.41ms making 1 call to Class::MOP::MiniTrait::apply
16
1719µs9µs1;
18
19__END__
20
21=pod
22
23=head1 NAME
24
25Moose::Meta::Instance - The Moose Instance metaclass
26
27=head1 SYNOPSIS
28
29 # nothing to see here
30
31=head1 DESCRIPTION
32
33This class provides the low level data storage abstractions for
34attributes.
35
36Using this API directly in your own code violates encapsulation, and
37we recommend that you use the appropriate APIs in
38L<Moose::Meta::Class> and L<Moose::Meta::Attribute> instead. Those
39APIs in turn call the methods in this class as appropriate.
40
41At present, this is an empty subclass of L<Class::MOP::Instance>, so
42you should see that class for all API details.
43
44=head1 INHERITANCE
45
46C<Moose::Meta::Instance> is a subclass of L<Class::MOP::Instance>.
47
48=head1 BUGS
49
50See L<Moose/BUGS> for details on reporting bugs.
51
52=head1 AUTHOR
53
54Stevan Little E<lt>stevan@iinteractive.comE<gt>
55
56Yuval Kogman E<lt>nothingmuch@woobling.comE<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