line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# This file is part of MooseX-Attribute-Chained |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# This software is copyright (c) 2017 by Tom Hukins. |
5
|
|
|
|
|
|
|
# |
6
|
|
|
|
|
|
|
# This is free software; you can redistribute it and/or modify it under |
7
|
|
|
|
|
|
|
# the same terms as the Perl 5 programming language system itself. |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
package Moose::Meta::Attribute::Custom::Trait::Chained; |
10
|
|
|
|
|
|
|
$Moose::Meta::Attribute::Custom::Trait::Chained::VERSION = '1.0.3'; |
11
|
|
|
|
|
|
|
# ABSTRACT: DEPRECATED |
12
|
2
|
|
|
2
|
|
5859
|
use strict; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
139
|
|
13
|
2
|
|
|
2
|
|
14
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
87
|
|
14
|
2
|
|
|
2
|
|
14
|
no warnings 'redefine'; |
|
2
|
|
|
|
|
17
|
|
|
2
|
|
|
|
|
93
|
|
15
|
2
|
|
|
2
|
|
369
|
use MooseX::Attribute::Chained; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
155
|
|
16
|
|
|
|
|
|
|
warn |
17
|
|
|
|
|
|
|
"Implicit use of the Chained trait is deprecated. Please load MooseX::Attribute::Chained explicitly" |
18
|
|
|
|
|
|
|
unless ( caller() )[0] eq 'MooseX::Attribute::Chained'; |
19
|
1
|
|
|
1
|
|
46
|
sub register_implementation {'MooseX::Traits::Attribute::Chained'} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding UTF-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Moose::Meta::Attribute::Custom::Trait::Chained - DEPRECATED |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 1.0.3 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHORS |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=over 4 |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=item * |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Tom Hukins <tom@eborcom.com> |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=item * |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Moritz Onken <onken@netcubed.de> |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=item * |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
David McLaughlin <david@dmclaughlin.com> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=back |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This software is copyright (c) 2017 by Tom Hukins. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
60
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 BUGS |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website |
65
|
|
|
|
|
|
|
L<http://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Attribute-Chained> |
66
|
|
|
|
|
|
|
or by email to L<bug-moosex-attribute-chained at |
67
|
|
|
|
|
|
|
rt.cpan.org|mailto:bug-moosex-attribute-chained at rt.cpan.org>. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
70
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
71
|
|
|
|
|
|
|
feature. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=cut |