switchover to rspace next_step and dump step()
[scpubgit/DX.git] / lib / DX / Role / Predicate.pm
CommitLineData
9d759b64 1package DX::Role::Predicate;
2
9d759b64 3use DX::Role;
4
5sub resolution_step_for {
ccf0d4fe 6 my ($self, $prop, @args) = @_;
0c1b8f3b 7 $self->_resolution_space_for(@args)
8 ->but(proposition => $prop)
9 ->next_step;
9d759b64 10}
11
9d759b64 121;