* Moose::Meta::Class
- Modify make_immutable to work with the new Class::MOP immutable
mechanism + POD + very basic test (groditi)
+ * Moose::Meta::Attribute
+ - Fix handles to use goto() so that caller() comes out properly on
+ the other side (perigrin)
0.22 Thurs. May 31, 2007
* Moose::Util::TypeConstraints
Yuval (nothingmuch) Kogman
+Chris (perigrin) Prather
+
... and many other #moose folks
=head1 COPYRIGHT AND LICENSE
# we should check for lack of
# a callable return value from
# the accessor here
- ((shift)->$accessor_name())->$method_to_call(@_);
+ my $proxy = (shift)->$accessor_name();
+ @_ = ($proxy, @_);
+ goto &{ $proxy->can($method_to_call)};
});
}
}