X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=blobdiff_plain;f=lib%2FMoose%2FMeta%2FTypeConstraint%2FRole.pm;h=1f5fe77bd6a4bf6181f289afc3b109dcb286b03d;hp=3451f137d2e47959b311cf01e20d18d8c0b15388;hb=0031c50c1ba39e702417ee2bc1cb6a00b7af2cfa;hpb=985a810042f4dbc5865092e4bf76865d112f3432 diff --git a/lib/Moose/Meta/TypeConstraint/Role.pm b/lib/Moose/Meta/TypeConstraint/Role.pm index 3451f13..1f5fe77 100644 --- a/lib/Moose/Meta/TypeConstraint/Role.pm +++ b/lib/Moose/Meta/TypeConstraint/Role.pm @@ -92,7 +92,8 @@ sub is_subtype_of { if ( not ref $type_or_name_or_role ) { # it might be a role - return 1 if Class::MOP::class_of($self->role)->does_role( $type_or_name_or_role ); + my $class = Class::MOP::class_of($self->role); + return 1 if defined($class) && $class->does_role( $type_or_name_or_role ); } my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_role); @@ -102,7 +103,8 @@ sub is_subtype_of { if ( $type->isa(__PACKAGE__) ) { # if $type_or_name_or_role isn't a role, it might be the TC name of another ::Role type # or it could also just be a type object in this branch - return Class::MOP::class_of($self->role)->does_role( $type->role ); + my $class = Class::MOP::class_of($self->role); + return defined($class) && $class->does_role( $type->role ); } else { # the only other thing we are a subtype of is Object $self->SUPER::is_subtype_of($type);