summaryrefslogtreecommitdiffstats
path: root/lib/MooseX/Role/Matcher.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MooseX/Role/Matcher.pm')
-rw-r--r--lib/MooseX/Role/Matcher.pm14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/MooseX/Role/Matcher.pm b/lib/MooseX/Role/Matcher.pm
index d39e388..767bb1f 100644
--- a/lib/MooseX/Role/Matcher.pm
+++ b/lib/MooseX/Role/Matcher.pm
@@ -14,6 +14,7 @@ my $p = shift;
my $default = $p->default_match;
method _apply_to_matches => sub {
+ my $class = shift;
my $on_match = shift;
my $matcher = shift;
my @list = @{ shift() };
@@ -22,20 +23,25 @@ method _apply_to_matches => sub {
};
method first_match => sub {
- _apply_to_matches(\&first, sub { $_->match(@_) }, @_);
+ my $class = shift;
+ $class->_apply_to_matches(\&first, sub { $_->match(@_) }, @_);
};
method each_match => sub {
- _apply_to_matches(\&apply, shift, @_);
+ my $class = shift;
+ my $code = shift;
+ $class->_apply_to_matches(\&apply, $code, @_);
};
method grep_matches => sub {
+ my $class = shift;
# XXX: can you use grep like this?
- _apply_to_matches(\&grep, sub { $_->match(@_) }, @_);
+ $class->_apply_to_matches(\&grep, sub { $_->match(@_) }, @_);
};
method any_match => sub {
- _apply_to_matches(\&any, sub { $_->match(@_) }, @_);
+ my $class = shift;
+ $class->_apply_to_matches(\&any, sub { $_->match(@_) }, @_);
};
method _match => sub {