X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FB%2FConcise.pm;h=95837aedd63afac4c9be4aad223b521b6a440661;hp=97ec791259b7e9b3c8a2648a24b6c5f7ee4c3d5e;hb=afc8677b078de3f125147caf731bd298c8b6d04e;hpb=9c3c6bc8dea98cb4955deff23ccb9bae2a2992cd diff --git a/lib/Devel/REPL/Plugin/B/Concise.pm b/lib/Devel/REPL/Plugin/B/Concise.pm index 97ec791..95837ae 100644 --- a/lib/Devel/REPL/Plugin/B/Concise.pm +++ b/lib/Devel/REPL/Plugin/B/Concise.pm @@ -1,5 +1,5 @@ -#!/usr/bin/perl - +use strict; +use warnings; package Devel::REPL::Plugin::B::Concise; use Devel::REPL::Plugin; @@ -7,14 +7,17 @@ use B::Concise (); B::Concise::compileOpts(qw(-nobanner)); -use namespace::clean -except => [ 'meta' ]; +use namespace::autoclean; -with qw(Devel::REPL::Plugin::Turtles); +sub BEFORE_PLUGIN { + my $self = shift; + $self->load_plugin('Turtles'); +} sub AFTER_PLUGIN { my $self = shift; - my $prefix = $self->default_command_prefix; + my $prefix = $self->default_command_prefix; $self->add_turtles_matcher(qr/^ \#(concise) \s+ @@ -60,14 +63,14 @@ Devel::REPL::Plugin::B::Concise - B::Concise dumping of expression optrees repl> #concise -exec -terse { > foo => foo(), > } - COP (0x138b1e0) nextstate - OP (0x13bd280) pushmark - SVOP (0x138c6a0) const PV (0xbbab50) "foo" - OP (0x13bbae0) pushmark - SVOP (0x13bcee0) gv GV (0xbbb250) *Devel::REPL::Plugin::B::Concise::foo - UNOP (0x13890a0) entersub [1] - LISTOP (0x13ba020) anonhash - UNOP (0x5983d0) leavesub [1] + COP (0x138b1e0) nextstate + OP (0x13bd280) pushmark + SVOP (0x138c6a0) const PV (0xbbab50) "foo" + OP (0x13bbae0) pushmark + SVOP (0x13bcee0) gv GV (0xbbb250) *Devel::REPL::Plugin::B::Concise::foo + UNOP (0x13890a0) entersub [1] + LISTOP (0x13ba020) anonhash + UNOP (0x5983d0) leavesub [1] =head1 DESCRIPTION @@ -75,7 +78,7 @@ This plugin provides a C command that uses L to dump optrees of expressions. The code is not actually executed, which means that when used with -L there is . +L there is no new value in C<_>. The command takes the same options as L, e.g. C<-basic> or C<-exec> to determine the dump order, C<-debug>, C<-concise> and C<-terse> to