X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FMultiLine%2FPPI.pm;h=1db70efeb854670e58386b9aae8c63089725acf3;hp=f3ba89782a4ab02057f318c25aadb2d071cb87ca;hb=6a5409bc859187db7d7553e4c19a559aeeba6430;hpb=d9ba19d2caa08c4163e1462b96ceecc12fd158bc diff --git a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm index f3ba897..1db70ef 100644 --- a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm +++ b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm @@ -1,6 +1,6 @@ package Devel::REPL::Plugin::MultiLine::PPI; -use Moose::Role; +use Devel::REPL::Plugin; use PPI; use namespace::clean -except => [ 'meta' ]; @@ -9,30 +9,48 @@ has 'continuation_prompt' => ( default => sub { '> ' } ); +has 'line_depth' => ( + is => 'rw', required => 1, lazy => 1, + default => sub { 0 } +); + around 'read' => sub { my $orig = shift; my ($self, @args) = @_; my $line = $self->$orig(@args); if (defined $line) { - while (needs_continuation($line)) { - my $orig_prompt = $self->prompt; - $self->prompt($self->continuation_prompt); + return $self->continue_reading_if_necessary($line, @args); + } else { + return $line; + } +}; + +sub continue_reading_if_necessary { + my ( $self, $line, @args ) = @_; - my $append = $self->read(@args); - $line .= $append if defined($append); + while ($self->line_needs_continuation($line)) { + my $orig_prompt = $self->prompt; + $self->prompt($self->continuation_prompt); - $self->prompt($orig_prompt); + $self->line_depth($self->line_depth + 1); + my $append = $self->read(@args); + $self->line_depth($self->line_depth - 1); - # ^D means "shut up and eval already" - return $line if !defined($append); - } + $line .= "\n$append" if defined($append); + + $self->prompt($orig_prompt); + + # ^D means "shut up and eval already" + return $line if !defined($append); } + return $line; -}; +} -sub needs_continuation +sub line_needs_continuation { + my $repl = shift; my $line = shift; my $document = PPI::Document->new(\$line); return 0 if !defined($document);