X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FObject.pm;h=a88d147a9c70efa93504c1000fa7a36b84a6961b;hb=refs%2Ftags%2F0.40_08;hp=3b08ffe9f3422df3239fe948a58dcf4f5c3ecb6e;hpb=5124b7171ce498f9bb43befc007d9248817d6454;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Object.pm b/lib/Mouse/Object.pm index 3b08ffe..a88d147 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 +This document describes Mouse version 0.40_08 =head1 METHODS