summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/LexicalPersistence.pm
blob: 415f5a90eb21d8050a2008e68b915966b0f0cbec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package main;
use strict;
use warnings;
# ABSTRACT: persists lexical variables between lines

use mop;

use PadWalker 'peek_sub', 'closed_over';

=head1 SYNOPSIS

  ; .replyrc
  [LexicalPersistence]

=head1 DESCRIPTION

This plugin persists the values of lexical variables between input lines. For
instance, with this plugin you can enter C<my $x = 2> into the Reply shell, and
then use C<$x> as expected in subsequent lines.

=cut

class Reply::Plugin::LexicalPersistence extends Reply::Plugin {
    has $env = {};

    method compile ($next, $line, %args) {
        my ($code) = $next->($line, %args);

        my $new_env = peek_sub($code);
        delete $new_env->{$_} for keys %{ closed_over($code) };

        $env = { %$env, %$new_env };

        return $code;
    }

    method lexical_environment { $env }
}

1;