NAME
Perl::Tidy::Sweetened::Variable::Twigils - Perl::Tidy::Sweetened filter plugin to handle twigls
VERSION
version 1.10
SYNOPSIS
our $plugins = Perl::Tidy::Sweetened::Pluggable->new();
$plugins->add_filter(
Perl::Tidy::Sweetened::Variable::Twigils->new(
twigil => '$!',
marker => 'TWG_BANG',
) );
DESCRIPTION
This is a Perl::Tidy::Sweetened filter which enables the use of twigils as defined by the Twigils module. New accepts:
- twigil
-
twigil => '$!'
Declares a new twigil. In this case to be used as
$!variable
. - marker
-
marker => 'TWG_BANG'
Provides a text marker to be used to flag the new keywords during
prefilter
. The source code will be filtered prior to formatting by Perl::Tidy such that:$!class_attribute
is turned into:
$__TWG_BANK_1
Then back into the original twigiled variable in the
postfilter
.
AUTHOR
Mark Grimes <mgrimes@cpan.org>
CONTRIBUTORS
Kent Fredric (@kentnl)
Gregoy Oschwald (@oschwal)
Curtis Brandt (@aggrolite)
SOURCE
Source repository is at https://github.com/mvgrimes/Perl-Tidy-Sweetened.
BUGS
Please report any bugs or feature requests on the bugtracker website http://github.com/mvgrimes/Perl-Tidy-Sweetened/issues
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.
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Mark Grimes <mgrimes@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.