sub new {
my ( $class, %args ) = @_;
- $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
+ $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Role');
my $self = $class->meta->new_object(%args);
$self->_create_hand_optimized_type_constraint;
if ( not ref $type_or_name_or_role ) {
# it might be a role
- return 1 if $self->role->does_role( $type_or_name_or_role );
+ return 1 if $self->role->meta->does_role( $type_or_name_or_role );
}
my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_role);
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 $self->role->does_role( $type->role );
+ return $self->role->meta->does_role( $type->role );
} else {
# the only other thing we are a subtype of is Object
$self->SUPER::is_subtype_of($type);
return $METAS{$role} if exists $METAS{$role};
# make a subtype for each Moose class
- subtype $role
- => as 'Role'
- => where { Moose::Util::does_role($_, $role) }
- => optimize_as { blessed($_[0]) && Moose::Util::does_role($_[0], $role) }
- unless find_type_constraint($role);
+ role_type $role unless find_type_constraint($role);
my $meta;
if ($role->can('meta')) {