Anchor this exclusion regex so "has_list" etc will work
Shawn M Moore [Tue, 9 Dec 2008 02:58:51 +0000 (02:58 +0000)]
lib/Mouse/Meta/Class.pm

index a6d6de7..20d0549 100644 (file)
@@ -75,7 +75,7 @@ sub get_method_list {
     no strict 'refs';
     # Get all the CODE symbol table entries
     my @functions =
-      grep !/(?:has|with|around|before|after|blessed|extends|confess)/,
+      grep !/^(?:has|with|around|before|after|blessed|extends|confess)$/,
       grep { defined &{"${name}::$_"} }
       keys %{"${name}::"};
     push @functions, keys %{$self->{'methods'}->{$name}};