line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Class::Fields::Inherit; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
24438
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
47
|
|
4
|
1
|
|
|
1
|
|
6
|
use vars qw(@ISA @EXPORT $VERSION); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
157
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
$VERSION = '0.06'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
require Exporter; |
9
|
|
|
|
|
|
|
@ISA = qw(Exporter); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
@EXPORT = qw( inherit_fields ); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# This may seem backwards. The subroutine was moved to base.pm to break |
14
|
|
|
|
|
|
|
# base.pm's dependency on Class::Fields. |
15
|
|
|
|
|
|
|
require base; |
16
|
|
|
|
|
|
|
*inherit_fields = \&base::inherit_fields; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
return 'IRS Estate Tax Return Form 706'; |
20
|
|
|
|
|
|
|
__END__ |