increment $VERSION after 1.003028 release
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / B / Concise.pm
CommitLineData
1716b200 1use strict;
2use warnings;
320b3ad5 3package Devel::REPL::Plugin::B::Concise;
9d2a4940 4# ABSTRACT: B::Concise dumping of expression optrees
320b3ad5 5
c45376f3 6our $VERSION = '1.003029';
54beb05d 7
6f4f9516 8use Devel::REPL::Plugin;
87c0767b 9use B::Concise 0.62 ();
6f4f9516 10use namespace::autoclean;
320b3ad5 11
87c0767b 12B::Concise::compileOpts qw(-nobanner);
320b3ad5 13
3a400715 14sub BEFORE_PLUGIN {
15 my $self = shift;
16 $self->load_plugin('Turtles');
17}
320b3ad5 18
19sub AFTER_PLUGIN {
20 my $self = shift;
21
afc8677b 22 my $prefix = $self->default_command_prefix;
320b3ad5 23
24 $self->add_turtles_matcher(qr/^
25 \#(concise) \s+
26 ( (?:\-\w+\s+)* ) # options for concise
27 (.*) # the code
28 /x);
29}
30
31sub expr_command_concise {
32 my ( $self, $eval, $opts, $code ) = @_;
33
34 die unless $code;
35
9c3c6bc8 36 my %opts = map { $_ => 1 } (split /\s+/, $opts);
37
38 my $sub = $self->compile($code, no_mangling => !delete($opts{"-mangle"}) );
320b3ad5 39
3d22167c 40 if ( $self->is_error($sub) ) {
41 return $self->format($sub);
42 } else {
43 open my $fh, ">", \my $out;
44 {
45 local *STDOUT = $fh;
9c3c6bc8 46 B::Concise::compile(keys %opts, $sub)->();
3d22167c 47 }
48
49 return $out;
320b3ad5 50 }
320b3ad5 51}
52
53__PACKAGE__
54
55__END__
56
57=pod
58
320b3ad5 59=head1 SYNOPSIS
60
61 repl> #concise -exec -terse {
62 > foo => foo(),
63 > }
afc8677b 64 COP (0x138b1e0) nextstate
65 OP (0x13bd280) pushmark
66 SVOP (0x138c6a0) const PV (0xbbab50) "foo"
67 OP (0x13bbae0) pushmark
68 SVOP (0x13bcee0) gv GV (0xbbb250) *Devel::REPL::Plugin::B::Concise::foo
69 UNOP (0x13890a0) entersub [1]
70 LISTOP (0x13ba020) anonhash
71 UNOP (0x5983d0) leavesub [1]
320b3ad5 72
73=head1 DESCRIPTION
74
75This plugin provides a C<concise> command that uses L<B::Concise> to dump
76optrees of expressions.
77
78The code is not actually executed, which means that when used with
c5bf3ed2 79L<Deve::REPL::Plugin::OutputCache> there is no new value in C<_>.
320b3ad5 80
81The command takes the same options as L<B::Concise/compile>, e.g. C<-basic> or
82C<-exec> to determine the dump order, C<-debug>, C<-concise> and C<-terse> to
83determine the formatting, etc.
84
85=head1 AUTHOR
86
87Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
88
89=cut