1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
package MooseX::ChainedAccessors;
# ABSTRACT: DEPRECATED
use strict;
use warnings;
use Carp qw(confess);
use Try::Tiny;
use base 'Moose::Meta::Method::Accessor';
sub _generate_accessor_method_inline {
my $self = shift;
my $attr = $self->associated_attribute;
return try {
$self->_compile_code([
'sub {',
'if (@_ > 1) {',
$attr->_inline_set_value('$_[0]', '$_[1]'),
'return $_[0];',
'}',
$attr->_inline_get_value('$_[0]'),
'}',
]);
}
catch {
confess "Could not generate inline accessor because : $_";
};
}
sub _generate_writer_method_inline {
my $self = shift;
my $attr = $self->associated_attribute;
return try {
$self->_compile_code([
'sub {',
$attr->_inline_set_value('$_[0]', '$_[1]'),
'$_[0]',
'}',
]);
}
catch {
confess "Could not generate inline writer because : $_";
};
}
1;
__END__
=head1 DESCRIPTION
Deprecated in favor of L<MooseX::Attribute::Chained>.
|