Add persistent hints
[p5sagit/Eval-WithLexicals.git] / lib / Eval / WithLexicals / Role / PreludeEachTime.pm
CommitLineData
148445b9 1package Eval::WithLexicals::Role::PreludeEachTime;
2use Moo::Role;
3
4around setup_code => sub {
5 my $orig = shift;
6 my($self) = @_;
7 ($self->prelude, $orig->(@_));
8};
9
101;