- added get_all_metaclasses, get_all_metaclass_names
and get_all_metaclass_instances method to allow
access to all the cached metaclass objects.
+ - attribute slot initialization is now the responsibility
+ of the attribute itself, and construct_instance now
+ delegates appropriately
+
+ * Class::MOP::Attribute
+ - attribute slot initialization is now the responsibility
+ of the attribute itself, so we added a method for it
+ called initialize_instance_slot
0.24 Tues. April 11, 2006
* Class::MOP::Class
use Carp 'confess';
use Scalar::Util 'blessed', 'reftype', 'weaken';
-our $VERSION = '0.05';
+our $VERSION = '0.06';
sub meta {
require Class::MOP::Class;
return bless { %{$self}, %options } => blessed($self);
}
+sub initialize_instance_slot {
+ my ($self, $instance, $params) = @_;
+ my $init_arg = $self->init_arg();
+ # try to fetch the init arg from the %params ...
+ my $val;
+ $val = $params->{$init_arg} if exists $params->{$init_arg};
+ # if nothing was in the %params, we can use the
+ # attribute's default value (if it has one)
+ if (!defined $val && $self->has_default) {
+ $val = $self->default($instance);
+ }
+ $instance->{$self->name} = $val;
+}
+
# NOTE:
# the next bunch of methods will get bootstrapped
# away in the Class::MOP bootstrapping section
C<%options> are contained added as key-value pairs. Acceptable keys
are as follows:
-=item B<clone (%options)>
-
=over 4
=item I<init_arg>
=back
+=item B<clone (%options)>
+
+=item B<initialize_instance_slot ($instance, $params)>
+
=back
=head2 Informational
use Sub::Name 'subname';
use B 'svref_2object';
-our $VERSION = '0.11';
+our $VERSION = '0.12';
# Self-introspection
my ($class, %params) = @_;
my $instance = {};
foreach my $attr ($class->compute_all_applicable_attributes()) {
- my $init_arg = $attr->init_arg();
- # try to fetch the init arg from the %params ...
- my $val;
- $val = $params{$init_arg} if exists $params{$init_arg};
- # if nothing was in the %params, we can use the
- # attribute's default value (if it has one)
- if (!defined $val && $attr->has_default) {
- $val = $attr->default($instance);
- }
- $instance->{$attr->name} = $val;
+ $attr->initialize_instance_slot($instance, \%params);
}
return $instance;
}
use strict;
use warnings;
-use Test::More tests => 39;
+use Test::More tests => 40;
use Test::Exception;
BEGIN {
my @methods = qw(
meta
new clone
+
+ initialize_instance_slot
+
name
has_accessor accessor
has_writer writer