X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FLexEnv.pm;h=d3bd46467408d257f67d8377357ad8a774bfb50c;hp=2d487467ce8eb31675347c687eb5534f0223ee3e;hb=5ac988901b5ccbf3b31cdf980534d0c9631d9e4a;hpb=2bdaa93e26a2a3f82fc546d8ad548a51b6960e65 diff --git a/lib/Devel/REPL/Plugin/LexEnv.pm b/lib/Devel/REPL/Plugin/LexEnv.pm index 2d48746..d3bd464 100644 --- a/lib/Devel/REPL/Plugin/LexEnv.pm +++ b/lib/Devel/REPL/Plugin/LexEnv.pm @@ -1,13 +1,22 @@ +use strict; +use warnings; package Devel::REPL::Plugin::LexEnv; +# ABSTRACT: Provide a lexical environment for the REPL -use Moose::Role; -use namespace::clean -except => [ 'meta' ]; +our $VERSION = '1.003028'; + +use Devel::REPL::Plugin; +use namespace::autoclean; use Lexical::Persistence; +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('FindVariable'); +} + has 'lexical_environment' => ( isa => 'Lexical::Persistence', is => 'rw', - required => 1, lazy => 1, default => sub { Lexical::Persistence->new } ); @@ -42,4 +51,42 @@ around 'execute' => sub { return $self->$orig($wrapped, @rest); }; +# this doesn't work! yarg. we now just check $self->can('lexical_environment') +# in FindVariable + +#around 'find_variable' => sub { +# my $orig = shift; +# my ($self, $name) = @_; +# +# return \( $self->lexical_environment->get_context('_')->{$name} ) +# if exists $self->lexical_environment->get_context('_')->{$name}; +# +# return $orig->(@_); +#}; + 1; + +__END__ + +=pod + +=head1 SYNOPSIS + + # in your re.pl file: + use Devel::REPL; + my $repl = Devel::REPL->new; + $repl->load_plugin('LexEnv'); + + $repl->lexical_environment->do(<<'CODEZ'); + use FindBin; + use lib "$FindBin::Bin/../lib"; + use MyApp::Schema; + my $s = MyApp::Schema->connect('dbi:Pg:dbname=foo','broseph','elided'); + CODEZ + + $repl->run; + + # after you run re.pl: + $ warn $s->resultset('User')->first->first_name # <-- note that $s works + +=cut