summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/LexicalPersistence.pm
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-05-30 04:41:11 -0500
committerJesse Luehrs <doy@tozt.net>2013-05-30 04:41:11 -0500
commitd8a90a03e9c5e8e2732374a10e0e79289ffb793c (patch)
tree98b6385d26dad2a14687c2c51d402c5b6ebdc837 /lib/Reply/Plugin/LexicalPersistence.pm
parent69e4ff7c28debe5cae5bd505d5df12bd12bdd11a (diff)
downloadreply-d8a90a03e9c5e8e2732374a10e0e79289ffb793c.tar.gz
reply-d8a90a03e9c5e8e2732374a10e0e79289ffb793c.zip
App::REPL -> Reply
Diffstat (limited to 'lib/Reply/Plugin/LexicalPersistence.pm')
-rw-r--r--lib/Reply/Plugin/LexicalPersistence.pm31
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/Reply/Plugin/LexicalPersistence.pm b/lib/Reply/Plugin/LexicalPersistence.pm
new file mode 100644
index 0000000..0540f96
--- /dev/null
+++ b/lib/Reply/Plugin/LexicalPersistence.pm
@@ -0,0 +1,31 @@
+package Reply::Plugin::LexicalPersistence;
+use strict;
+use warnings;
+
+use base 'Reply::Plugin';
+
+use Lexical::Persistence;
+
+sub new {
+ my $class = shift;
+ my $self = $class->SUPER::new(@_);
+ $self->{env} = Lexical::Persistence->new;
+ return $self;
+}
+
+sub compile {
+ my $self = shift;
+ my ($next, $line, %args) = @_;
+
+ my %c = %{ $self->{env}->get_context('_') };
+
+ $args{environment} ||= {};
+ $args{environment} = {
+ %{ $args{environment} },
+ (map { $_ => ref($c{$_}) ? $c{$_} : \$c{$_} } keys %c),
+ };
+ my ($code) = $next->($line, %args);
+ return $self->{env}->wrap($code);
+}
+
+1;