| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::NonMooseStyleClassBuilder; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
432526
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
204
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
6
|
|
|
|
|
|
|
our $DATE = '2023-10-29'; # DATE |
|
7
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-NonMooseStyleClassBuilder'; # DIST |
|
8
|
|
|
|
|
|
|
our $VERSION = '0.002'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $LIST = { |
|
11
|
|
|
|
|
|
|
summary => 'List of non-Moose-style class builders', |
|
12
|
|
|
|
|
|
|
description => <<'_', |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
This list catalogs class builders with interface that is different than the |
|
15
|
|
|
|
|
|
|
Moose family. |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
See also a whole host of Class::Accessor::* modules. |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
_ |
|
20
|
|
|
|
|
|
|
entries => [ |
|
21
|
|
|
|
|
|
|
{module => 'Class::Meta::AccessorBuilder', |
|
22
|
|
|
|
|
|
|
summary=>'Part of the Class::Meta framework'}, |
|
23
|
|
|
|
|
|
|
{module => 'Class::Struct'}, |
|
24
|
|
|
|
|
|
|
{module => 'Class::Builder'}, |
|
25
|
|
|
|
|
|
|
{module => 'Class::GenSource', |
|
26
|
|
|
|
|
|
|
summary=>'This is more like code generator, it generates Perl code source for the entire class definition, not just accessors'}, |
|
27
|
|
|
|
|
|
|
{module => 'Object::Declare'}, |
|
28
|
|
|
|
|
|
|
{module => 'Object::Tiny'}, |
|
29
|
|
|
|
|
|
|
{module => 'Class::Tiny'}, |
|
30
|
|
|
|
|
|
|
{module => 'Object::New', |
|
31
|
|
|
|
|
|
|
summary=>'Only provides a new() constructor method'}, |
|
32
|
|
|
|
|
|
|
{module => 'Class::Accessor', |
|
33
|
|
|
|
|
|
|
summary => 'Also supports Moose-style "has"'}, |
|
34
|
|
|
|
|
|
|
{module => 'Class::XSAccessor', |
|
35
|
|
|
|
|
|
|
summary=>'Fast version of Class::Accessor, used by Moo'}, |
|
36
|
|
|
|
|
|
|
], |
|
37
|
|
|
|
|
|
|
}; |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
1; |
|
40
|
|
|
|
|
|
|
# ABSTRACT: List of non-Moose-style class builders |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
__END__ |