return;
}
-# 1 extra level because it's called by import so there's a layer\r
-# of indirection\r
-sub _LEVEL(){ 1 }
-
sub _get_caller_package {
my($arg) = @_;
+ # We need one extra level because it's called by import so there's a layer
+ # of indirection
if(ref $arg){
return defined($arg->{into}) ? $arg->{into}
- : defined($arg->{into_level}) ? scalar caller(_LEVEL + $arg->{into_level})
- : scalar caller(_LEVEL);
+ : defined($arg->{into_level}) ? scalar caller(1 + $arg->{into_level})
+ : scalar caller(1);
}
else{
- return scalar caller(_LEVEL);
+ return scalar caller(1);
}
}
=head1 SYNOPSIS
- package MyApp::Mouse;\r
-\r
- use Mouse ();\r
- use Mouse::Exporter;\r
-\r
- Mouse::Exporter->setup_import_methods(\r
- as_is => [ 'has_rw', 'other_sugar', \&Some::Random::thing ],\r
- also => 'Mouse',\r
- );\r
-\r
+ package MyApp::Mouse;
+
+ use Mouse ();
+ use Mouse::Exporter;
+
+ Mouse::Exporter->setup_import_methods(
+ as_is => [ 'has_rw', 'other_sugar', \&Some::Random::thing ],
+ also => 'Mouse',
+ );
+
sub has_rw {
- my $meta = caller->meta;\r
- my ( $name, %options ) = @_;\r
- $meta->add_attribute(\r
- $name,\r
- is => 'rw',\r
- %options,\r
- );\r
- }\r
-\r
- # then later ...\r
- package MyApp::User;\r
-
- use MyApp::Mouse;\r
-\r
- has 'name';\r
- has_rw 'size';\r
- thing;\r
-\r
+ my $meta = caller->meta;
+ my ( $name, %options ) = @_;
+ $meta->add_attribute(
+ $name,
+ is => 'rw',
+ %options,
+ );
+ }
+
+ # then later ...
+ package MyApp::User;
+
+ use MyApp::Mouse;
+
+ has 'name';
+ has_rw 'size';
+ thing;
+
no MyApp::Mouse;
=head1 DESCRIPTION
-This module encapsulates the exporting of sugar functions in a\r
-C<Mouse.pm>-like manner. It does this by building custom C<import>,\r
-C<unimport> methods for your module, based on a spec you provide.\r
+This module encapsulates the exporting of sugar functions in a
+C<Mouse.pm>-like manner. It does this by building custom C<import>,
+C<unimport> methods for your module, based on a spec you provide.
Note that C<Mouse::Exporter> does not provide the C<with_meta> option,
but you can easily get the metaclass by C<< caller->meta >> as L</SYNOPSIS> shows.