package Mouse::Meta::Method::Accessor;
use Mouse::Util qw(:meta); # enables strict and warnings
-use constant _MOUSE_DEBUG => !!$ENV{MOUSE_DEBUG};
+use constant _MOUSE_DEBUG => $ENV{MOUSE_DEBUG} ? 1 : 0;
sub _inline_slot{
my(undef, $self_var, $attr_name) = @_;
my $trigger = $attribute->trigger;
my $is_weak = $attribute->is_weak_ref;
my $should_deref = $attribute->should_auto_deref;
- my $should_coerce = (defined($constraint) && $constraint->has_coercion && $attribute->should_coerce);
+ my $should_coerce = (defined($constraint)
+ && $constraint->has_coercion
+ && $attribute->should_coerce);
- my $compiled_type_constraint = defined($constraint) ? $constraint->_compiled_type_constraint : undef;
+ my $compiled_type_constraint = defined($constraint)
+ ? $constraint->_compiled_type_constraint
+ : undef;
my $self = '$_[0]';
my $slot = $method_class->_inline_slot($self, $name);;
if ($type eq 'rw' || $type eq 'wo') {
if($type eq 'rw'){
- $accessor .=
+ $accessor .=
'if (scalar(@_) >= 2) {' . "\n";
}
else{ # writer
- $accessor .=
+ $accessor .=
'if(@_ < 2){ Carp::confess("Not enough arguments for the writer of $name") }'.
'{' . "\n";
}
-
+
my $value = '$_[1]';
if (defined $constraint) {
'my $val = $constraint->coerce('.$value.');';
$value = '$val';
}
- $accessor .=
+ $accessor .=
"\n".
'$compiled_type_constraint->('.$value.') or
$attribute->_throw_type_constraint_error('.$value.', $constraint);' . "\n";
package Mouse::Meta::Method::Constructor;
use Mouse::Util qw(:meta); # enables strict and warnings
-use constant _MOUSE_DEBUG => !!$ENV{MOUSE_DEBUG};
+use constant _MOUSE_DEBUG => $ENV{MOUSE_DEBUG} ? 1 : 0;
sub _inline_slot{
my(undef, $self_var, $attr_name) = @_;
package Mouse::Meta::Method::Destructor;
use Mouse::Util qw(:meta); # enables strict and warnings
-use constant _MOUSE_DEBUG => !!$ENV{MOUSE_DEBUG};
+use constant _MOUSE_DEBUG => $ENV{MOUSE_DEBUG} ? 1 : 0;
sub _generate_destructor{
my (undef, $metaclass) = @_;
package ouse;
-
use Mouse::Util; # enables strict and warnings
-
my $package = 'Class';
sub import {
$package = $_[1] || 'Class';
# loads an existing class (Mouse or non-Mouse)
# and re-"opens" the package definition to make
# debugging/introspection easier
- perl -Mouse=+My::Class -e 'print join ", " => __PACKAGE__->meta->get_method_list'
+ perl -Mouse=+My::Class -e 'print join ", " => __PACKAGE__->meta->get_method_list'
=head1 DESCRIPTION
-F<ouse.pm> is a simple source filter that adds C<package $name; use Mouse;>
-to the beginning of your script and was entirely created because typing
+F<ouse.pm> is a simple source filter that adds C<package $name; use Mouse;>
+to the beginning of your script and was entirely created because typing
perl C<< -e'package Foo; use Mouse; ...' >> was annoying me... especially after
getting used to having C<-Moose> for Moose.
-=head1 INTERFACE
+=head1 INTERFACE
C<ouse> provides exactly one method and it is automatically called by perl: