3 package Devel::REPL::Plugin::Peek;
4 use Devel::REPL::Plugin;
6 use Devel::Peek qw(Dump);
8 use namespace::clean -except => [ 'meta' ];
12 $self->load_plugin('Turtles');
15 sub expr_command_peek {
16 my ( $self, $eval, $code ) = @_;
18 my @res = $self->eval($code);
20 if ( $self->is_error(@res) ) {
21 return $self->format(@res);
23 # can't override output properly
24 # FIXME do some dup wizardry
26 return ""; # this is a hack to print nothing after Dump has already printed. PLZ TO FIX KTHX!
38 Devel::REPL::Plugin::Peek - L<Devel::Peek> plugin for L<Devel::REPL>.
43 SV = PV(0xb3dba0) at 0xb4abc0
45 FLAGS = (POK,READONLY,pPOK)
46 PV = 0x12bcf70 "foo"\0
52 This L<Devel::REPL::Plugin> adds a C<peek> command that calls
53 L<Devel::Peek/Dump> instead of the normal printing.
57 L<Devel::REPL>, L<Devel::Peek>
61 Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>