line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::Routine::Meta::Attribute::Trait::AutoClear; |
2
|
|
|
|
|
|
|
{ |
3
|
|
|
|
|
|
|
$Test::Routine::Meta::Attribute::Trait::AutoClear::VERSION = '0.001'; # TRIAL |
4
|
|
|
|
|
|
|
} |
5
|
2
|
|
|
2
|
|
6
|
use Moose::Role; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
10
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
package Moose::Meta::Attribute::Custom::Trait::AutoClear; |
8
|
|
|
|
|
|
|
{ |
9
|
|
|
|
|
|
|
$Moose::Meta::Attribute::Custom::Trait::AutoClear::VERSION = '0.001'; # TRIAL |
10
|
|
|
|
|
|
|
} |
11
|
|
|
|
|
|
|
sub register_implementation { |
12
|
2
|
|
|
2
|
|
11553
|
'Test::Routine::Meta::Attribute::Trait::AutoClear'; |
13
|
|
|
|
|
|
|
} |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 NAME |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Test::Routine::Meta::Attribute::Trait::AutoClear |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 VERSION |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
version 0.001 |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 AUTHOR |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Piers Cawley <pdcawley@bofh.org.uk> |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This software is copyright (c) 2012 by Piers Cawley. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
37
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|