Hi, I'm here tracing for exhaustion step
[scpubgit/DX.git] / lib / DX / Step / MarkAsExhaustion.pm
CommitLineData
ae6f4d03 1package DX::Step::MarkAsExhaustion;
2
3use DX::Class;
4
5with 'DX::Role::Step';
6
7sub apply_to {
8 my ($self, $ss) = @_;
5de5fb5d 9 trace exhaustion => [ statement => [ [ symbol => 'exhaustion' ] ] ];
ae6f4d03 10 $ss->but(
11 is_solution_state => 0,
12 is_exhaustion_state => 1,
13 next_step => undef,
14 );
15}
16
171;