The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Dump::Patch::Deparse - Patch Data::Dump so it deparses code references

VERSION

This document describes version 0.001 of Data::Dump::Patch::Deparse (from Perl distribution Data-Dump-Patch-Deparse), released on 2017-02-11.

SYNOPSIS

In your source code:

 use Data::Dump::Patch::Deparse;
 use Data::Dump;

 dd(sub { [1,2] }); # now prints "sub { [1, 2] }" instead of "sub { ... }"

On the command-line:

 % perl -MData::Dump::Patch::Deparse -MData::Dump -e'dd ...'

DESCRIPTION

PACKAGE VARIABLES

$OPT_REMOVE_PRAGMAS

Like in Data::Dmp.

$OPT_PERL_VERSION

Like in Data::Dmp.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Data-Dump-Patch-Deparse.

SOURCE

Source repository is at https://github.com/perlancar/perl-Data-Dump-Patch-Deparse.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Dump-Patch-Deparse

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

SEE ALSO

Data::Dump

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.