move backtrack step creation into rspace
[scpubgit/DX.git] / lib / DX / Step / ConsiderProposition.pm
CommitLineData
86dbedb6 1package DX::Step::ConsiderProposition;
e647e417 2
3use DX::Class;
4
5with 'DX::Role::Step';
6
f9dfc310 7has proposition => (is => 'ro', isa => Proposition, required => 1);
ccf0d4fe 8
e647e417 9sub apply_to {
110fd002 10 my ($self, $ss) = @_;
11 my $hyp = $ss->current_hypothesis;
5b6cab1b 12 trace consider => [
13 statement => [
14 [ symbol => 'consider' ],
15 @{$self->proposition->for_deparse->[1]},
16 ],
17 ];
d69f4df4 18 return $ss->but(next_step => $self->proposition->resolve_for($hyp->scope));
e647e417 19}
20
211;