X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FExporter.pm;h=42433e005d495fe8425f521b524f1409d02bcb60;hb=9ee0e57c8c1ca23a9de421bf3ecf9e73ba795898;hp=9ac5661b815bc8fd3abf6294c2df8db410660cb7;hpb=6a97bbdad44391f2a587165cb81fcf8aedc642ac;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 9ac5661..42433e0 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -149,7 +149,7 @@ sub do_import { my $arg = shift @args; if($arg =~ s/^-//){ if($arg eq 'traits'){ - push @traits, @{shift(@args)}; + push @traits, ref($args[0]) ? @{shift(@args)} : shift(@args); } else { Mouse::Util::not_supported("-$arg"); @@ -177,10 +177,11 @@ sub do_import { if(@traits){ my $type = (split /::/, ref $meta)[-1]; # e.g. "Class" for "My::Meta::Class" @traits = - map{ ref($_) ? $_ : Mouse::Util::resolve_metaclass_alias($type => $_, trait => 1) } - @traits; + map{ + ref($_) ? $_ + : Mouse::Util::resolve_metaclass_alias($type => $_, trait => 1) + } @traits; - not_supported('-traits'); require Mouse::Util::MetaRole; Mouse::Util::MetaRole::apply_metaclass_roles( for_class => $into, @@ -188,6 +189,9 @@ sub do_import { ); } } + elsif(@traits){ + Carp::confess("Cannot provide traits when $package does not have an init_meta() method"); + } if(@exports){ foreach my $keyword(@exports){ @@ -258,7 +262,7 @@ Mouse::Exporter - make an import() and unimport() just like Mouse.pm =head1 VERSION -This document describes Mouse version 0.40_04 +This document describes Mouse version 0.40_08 =head1 SYNOPSIS