2 use Mouse::Util qw(does dump); # enables strict and warnings
7 $class->meta->throw_error('Cannot call new() on an instance') if ref $class;
9 my $args = $class->BUILDARGS(@_);
11 my $instance = Mouse::Meta::Class->initialize($class)->new_object($args);
12 $instance->BUILDALL($args);
20 (ref($_[0]) eq 'HASH')
21 || $class->meta->throw_error("Single parameters to new() must be a HASH ref");
44 die $e if $e; # rethrow
51 return unless $self->can('BUILD');
53 for my $class (reverse $self->meta->linearized_isa) {
57 *{ $class . '::BUILD' }{CODE};
69 return unless $self->can('DEMOLISH');
71 # We cannot count on being able to retrieve a previously made
72 # metaclass, _or_ being able to make a new one during global
73 # destruction. However, we should still be able to use mro at
74 # that time (at least tests suggest so ;)
76 foreach my $class (@{ Mouse::Util::get_linear_isa(ref $self) }) {
80 *{ $class . '::DEMOLISH'}{CODE};
94 Mouse::Object - The base object for Mouse classes
98 This document describes Mouse version 0.40
102 =head2 C<< new (Arguments) -> Object >>
104 Instantiates a new C<Mouse::Object>. This is obviously intended for subclasses.
106 =head2 C<< BUILDARGS (Arguments) -> HashRef >>
108 Lets you override the arguments that C<new> takes. Return a hashref of
111 =head2 C<< BUILDALL (\%args) >>
113 Calls C<BUILD> on each class in the class hierarchy. This is called at the
116 =head2 C<< BUILD (\%args) >>
118 You may put any business logic initialization in BUILD methods. You don't
119 need to redispatch or return any specific value.
121 =head2 C<< DEMOLISHALL >>
123 Calls C<DEMOLISH> on each class in the class hierarchy. This is called at
126 =head2 C<< DEMOLISH >>
128 You may put any business logic deinitialization in DEMOLISH methods. You don't
129 need to redispatch or return any specific value.
132 =head2 C<< does ($role_name) -> Bool >>
134 This will check if the invocant's class B<does> a given C<$role_name>.
135 This is similar to "isa" for object, but it checks the roles instead.
137 =head2 C<<dump ($maxdepth) -> Str >>
141 C'mon, how many times have you written the following code while debugging:
146 It can get seriously annoying, so why not just use this.
148 The implementation was lifted directly from Moose::Object.