restructure searching so with_one_step is actually one step
[scpubgit/DX.git] / lib / DX / Step / InvokeNextPredicate.pm
CommitLineData
e647e417 1package DX::Step::InvokeNextPredicate;
2
3use DX::Class;
4
5with 'DX::Role::Step';
6
7sub apply_to {
8 my ($self, $hyp) = @_;
9 return (undef, $hyp->head_proposition->resolve_for($hyp->scope));
10}
11
121;