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