initial creation of SearchProcess class
[scpubgit/DX.git] / lib / DX / Step / InvokeNextPredicate.pm
CommitLineData
e647e417 1package DX::Step::InvokeNextPredicate;
2
3use DX::Class;
4
5with 'DX::Role::Step';
6
ccf0d4fe 7has proposition => (is => 'ro', required => 1);
8
e647e417 9sub apply_to {
10 my ($self, $hyp) = @_;
ccf0d4fe 11 return (undef, $self->proposition->resolve_for($hyp->scope));
e647e417 12}
13
141;