line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
12
|
use 5.10.0; |
|
2
|
|
|
|
|
5
|
|
2
|
2
|
|
|
2
|
|
6
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
27
|
|
3
|
2
|
|
|
2
|
|
4
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
78
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# ABSTRACT: Internal Moose |
6
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY |
7
|
|
|
|
|
|
|
our $VERSION = '0.2405'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Map::Metro::Elk; |
10
|
|
|
|
|
|
|
|
11
|
2
|
|
|
2
|
|
933
|
use Moose(); |
|
2
|
|
|
|
|
616334
|
|
|
2
|
|
|
|
|
59
|
|
12
|
2
|
|
|
2
|
|
1577
|
use MooseX::AttributeShortcuts(); |
|
2
|
|
|
|
|
500203
|
|
|
2
|
|
|
|
|
61
|
|
13
|
2
|
|
|
2
|
|
865
|
use MooseX::AttributeDocumented(); |
|
2
|
|
|
|
|
9148
|
|
|
2
|
|
|
|
|
55
|
|
14
|
2
|
|
|
2
|
|
9
|
use namespace::autoclean(); |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
26
|
|
15
|
2
|
|
|
2
|
|
5
|
use Moose::Exporter; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
6
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Moose::Exporter->setup_import_methods(also => ['Moose']); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub init_meta { |
20
|
32
|
|
|
32
|
0
|
2131
|
my $class = shift; |
21
|
|
|
|
|
|
|
|
22
|
32
|
|
|
|
|
117
|
my %params = @_; |
23
|
32
|
|
|
|
|
57
|
my $for_class = $params{'for_class'}; |
24
|
32
|
|
|
|
|
109
|
Moose->init_meta(@_); |
25
|
32
|
|
|
|
|
96382
|
MooseX::AttributeShortcuts->init_meta(for_class => $for_class); |
26
|
32
|
|
|
|
|
94107
|
MooseX::AttributeDocumented->init_meta(for_class => $for_class); |
27
|
32
|
|
|
|
|
588
|
namespace::autoclean->import(-cleanee => $for_class, -except => [qw/system_maps found_plugins/]); |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
__END__ |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=pod |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=encoding UTF-8 |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 NAME |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Map::Metro::Elk - Internal Moose |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 VERSION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Version 0.2405, released 2016-07-23. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 SOURCE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
L<https://github.com/Csson/p5-Map-Metro> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 HOMEPAGE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
L<https://metacpan.org/release/Map-Metro> |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 AUTHOR |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Erik Carlsson <info@code301.com> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This software is copyright (c) 2016 by Erik Carlsson. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
63
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=cut |