X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=30f1fabc72402d69f6462a4706102c4b5fe8881b;hp=4ff2ce729f0e6c5b8987c36cb1af34c933deafc1;hb=506fb74dbff3e8f756230c643d8bff7b85ae9ca3;hpb=6a97bbdad44391f2a587165cb81fcf8aedc642ac diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 4ff2ce7..30f1fab 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 +use Mouse::Util qw(does dump meta); # 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_09 =head1 METHODS