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

File /home/tamil/util/marc-moose/lib/MARC/Moose/Field.pm
Statements Executed 10
Total Time 0.0002027 seconds
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sMARC::Moose::Field::::BEGINMARC::Moose::Field::BEGIN
0000s0sMARC::Moose::Field::::as_formattedMARC::Moose::Field::as_formatted
LineStmts.Exclusive
Time
Avg.Code
1package MARC::Moose::Field;
2# ABSTRACT: Marc field base object
3
4339µs13µsuse namespace::autoclean;
# spent 54µs making 1 call to namespace::autoclean::import
53112µs37µsuse Moose;
6
7
817µs7µshas tag => ( is => 'rw', required => 1, );
# spent 2.20ms making 1 call to Moose::has
9
10
11sub as_formatted {
12 my $self = shift;
13 return $self->tag;
14}
15
16116µs16µs__PACKAGE__->meta->make_immutable;
# spent 3.19ms making 1 call to Class::MOP::Class::make_immutable # spent 28µs making 1 call to MARC::Moose::Field::meta
17
18118µs18µs1;
19
20=head1 SEE ALSO
21
22=for :list
23
24* L<MARC::Moose::Field::Control>
25* L<MARC::Moose::Field::Std>
26110µs10µs