X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=787cc17dd69d2f48a52c8cc8ee295ad508ab4cec;hb=e058b279f94cfd76ca59d7972209e1b346492db9;hp=4ff2ce729f0e6c5b8987c36cb1af34c933deafc1;hpb=6a97bbdad44391f2a587165cb81fcf8aedc642ac;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 4ff2ce7..787cc17 100644 --- a/lib/Mouse/Object.pm +++ b/lib/Mouse/Object.pm @@ -1,48 +1,8 @@ package Mouse::Object; use Mouse::Util qw(does dump); # enables strict and warnings -sub new { - my $class = shift; +sub new; - $class->meta->throw_error('Cannot call new() on an instance') if ref $class; - - my $args = $class->BUILDARGS(@_); - - my $instance = Mouse::Meta::Class->initialize($class)->new_object($args); - $instance->BUILDALL($args); - return $instance; -} - -sub BUILDARGS { - my $class = shift; - - if (scalar @_ == 1) { - (ref($_[0]) eq 'HASH') - || $class->meta->throw_error("Single parameters to new() must be a HASH ref"); - - return {%{$_[0]}}; - } - else { - return {@_}; - } -} - -sub DESTROY { - my $self = shift; - - local $?; - - my $e = do{ - local $@; - eval{ - $self->DEMOLISHALL(); - }; - $@; - }; - - no warnings 'misc'; - die $e if $e; # rethrow -} sub BUILDALL { my $self = shift; @@ -89,7 +49,7 @@ Mouse::Object - The base object for Mouse classes =head1 VERSION -This document describes Mouse version 0.40_04 +This document describes Mouse version 0.40_06 =head1 METHODS