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=d6e53bea285c2b9e5483dfe35efa68c2bdb739c2;hp=fba07ddb6ca5a801c391eb8d9de15c07e0796576;hb=f049111ed91d199e926de686b2a6f179a89cba18;hpb=998f8107e680ac1c285896034925da2acb3c4d5d diff --git a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm index fba07dd..d6e53be 100644 --- a/lib/Devel/REPL/Plugin/MultiLine/PPI.pm +++ b/lib/Devel/REPL/Plugin/MultiLine/PPI.pm @@ -1,16 +1,20 @@ +use strict; +use warnings; package Devel::REPL::Plugin::MultiLine::PPI; -use Moose::Role; +use Devel::REPL::Plugin; use PPI; -use namespace::clean -except => [ 'meta' ]; +use namespace::autoclean; has 'continuation_prompt' => ( - is => 'rw', required => 1, lazy => 1, + is => 'rw', + lazy => 1, default => sub { '> ' } ); has 'line_depth' => ( - is => 'rw', required => 1, lazy => 1, + is => 'rw', + lazy => 1, default => sub { 0 } ); @@ -52,15 +56,24 @@ sub line_needs_continuation { my $repl = shift; my $line = shift; + + # add this so we can test whether the document ends in PPI::Statement::Null + $line .= "\n;;"; + my $document = PPI::Document->new(\$line); return 0 if !defined($document); + # adding ";" to a complete document adds a PPI::Statement::Null. we added a ;; + # so if it doesn't end in null then there's probably something that's + # incomplete + return 0 if $document->child(-1)->isa('PPI::Statement::Null'); + # this could use more logic, such as returning 1 on s/foo/ba my $unfinished_structure = sub { my ($document, $element) = @_; return 0 unless $element->isa('PPI::Structure'); - return 1 unless $element->start && $element->finish; + return 1 unless $element->finish; return 0; }; @@ -77,9 +90,6 @@ Devel::REPL::Plugin::MultiLine::PPI - read lines until all blocks are closed =head1 SYNOPSIS - #!/usr/bin/perl - - use lib './lib'; use Devel::REPL; my $repl = Devel::REPL->new;