|
I have just uploaded Object::InsideOut 3.39 to CPAN. The major change is that an error is generated for any unhandled parameters to new(). This catches typos in the parameter names:
my $obj = Person->new(nane => 'Joe'); # Should be 'name'
(If this breaks existing code, I'll consider conditionalizing this based on a global variable setting.) |