line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Perl::Tidy::Sweetened::Variable::Twigils; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# ABSTRACT: Perl::Tidy::Sweetened filter plugin to handle twigls |
4
|
|
|
|
|
|
|
|
5
|
13
|
|
|
13
|
|
237
|
use 5.010; # Needed for balanced parens matching with qr/(?-1)/ |
|
13
|
|
|
|
|
53
|
|
6
|
13
|
|
|
13
|
|
75
|
use strict; |
|
13
|
|
|
|
|
27
|
|
|
13
|
|
|
|
|
313
|
|
7
|
13
|
|
|
13
|
|
73
|
use warnings; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
331
|
|
8
|
13
|
|
|
13
|
|
97
|
use Carp; |
|
13
|
|
|
|
|
29
|
|
|
13
|
|
|
|
|
6969
|
|
9
|
|
|
|
|
|
|
$|++; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $VERSION = '1.18'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub new { |
14
|
13
|
|
|
13
|
0
|
55
|
my ( $class, %args ) = @_; |
15
|
13
|
50
|
|
|
|
115
|
croak 'twigil not specified' if not exists $args{twigil}; |
16
|
13
|
50
|
|
|
|
87
|
croak 'marker not specified' if not exists $args{marker}; |
17
|
13
|
50
|
|
|
|
53
|
$args{clauses} = [] unless exists $args{clauses}; |
18
|
13
|
|
|
|
|
109
|
return bless {%args}, $class; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
102
|
|
|
102
|
1
|
439
|
sub twigil { return $_[0]->{twigil} } |
22
|
102
|
|
|
102
|
1
|
336
|
sub marker { return $_[0]->{marker} } |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub emit_placeholder { |
25
|
8
|
|
|
8
|
0
|
37
|
my ( $self, $varname ) = @_; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# Store the signature and returns() for later use |
28
|
8
|
|
|
|
|
24
|
my $id = $self->{counter}++; |
29
|
8
|
|
|
|
|
27
|
$self->{store}->{$id} = $varname; |
30
|
|
|
|
|
|
|
|
31
|
8
|
|
|
|
|
24
|
return sprintf '$__%s_%s', $self->marker, $id; |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
sub emit_twigil { |
35
|
8
|
|
|
8
|
0
|
42
|
my ( $self, $id ) = @_; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# Get the signature and returns() from store |
38
|
8
|
|
|
|
|
29
|
my $varname = $self->{store}->{$id}; |
39
|
|
|
|
|
|
|
|
40
|
8
|
|
|
|
|
22
|
return sprintf '%s%s', $self->twigil, $varname; |
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub prefilter { |
44
|
94
|
|
|
94
|
0
|
334
|
my ( $self, $code ) = @_; |
45
|
94
|
|
|
|
|
359
|
my $twigil = '\\' . $self->twigil; |
46
|
|
|
|
|
|
|
|
47
|
94
|
|
|
|
|
762
|
$code =~ s{ |
48
|
|
|
|
|
|
|
(?: ^|\s)\K # needs to be sperated by a space |
49
|
|
|
|
|
|
|
$twigil # the twigil (ie, $!) |
50
|
|
|
|
|
|
|
(?<varname> \w+) # the variable name |
51
|
|
|
|
|
|
|
}{ |
52
|
|
|
|
|
|
|
$self->emit_placeholder( $+{varname} ) |
53
|
8
|
|
|
|
|
39
|
}egmx; |
54
|
|
|
|
|
|
|
|
55
|
94
|
|
|
|
|
411
|
return $code; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
sub postfilter { |
59
|
94
|
|
|
94
|
0
|
647
|
my ( $self, $code ) = @_; |
60
|
94
|
|
|
|
|
336
|
my $marker = $self->marker; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
# Convert back to method |
63
|
94
|
|
|
|
|
969
|
$code =~ s{ |
64
|
|
|
|
|
|
|
(?: ^|\s)\K # needs to be sperated by a space |
65
|
|
|
|
|
|
|
\$ __ $marker # keyword was convert to package |
66
|
|
|
|
|
|
|
_ (?<id> \d+ ) \b # the method name and a word break |
67
|
|
|
|
|
|
|
}{ |
68
|
8
|
|
|
|
|
37
|
$self->emit_twigil( $+{id} ); |
69
|
|
|
|
|
|
|
}egmx; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
# Check to see if tidy turned it into "sub name\n{ #..." |
72
|
94
|
|
|
|
|
846
|
$code =~ s{ |
73
|
|
|
|
|
|
|
^\s*\K # preserve leading whitespace |
74
|
|
|
|
|
|
|
package \s+ # method was converted to sub |
75
|
|
|
|
|
|
|
(?<subname> \w+)\n \s* # the method name and a newline |
76
|
|
|
|
|
|
|
(?<brace> \{ .*?) [ ]* # opening brace on newline followed orig comments |
77
|
|
|
|
|
|
|
\#__$marker \s+ # our magic token |
78
|
|
|
|
|
|
|
(?<id> \d+) # our sub identifier |
79
|
|
|
|
|
|
|
[ ]* # trailing spaces (not all whitespace) |
80
|
|
|
|
|
|
|
}{ |
81
|
0
|
|
|
|
|
0
|
$self->emit_keyword( $+{subname}, $+{brace}, $+{id} ); |
82
|
|
|
|
|
|
|
}egmx; |
83
|
|
|
|
|
|
|
|
84
|
94
|
|
|
|
|
395
|
return $code; |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
1; |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
__END__ |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=pod |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 NAME |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Perl::Tidy::Sweetened::Variable::Twigils - Perl::Tidy::Sweetened filter plugin to handle twigls |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head1 VERSION |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
version 1.18 |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head1 SYNOPSIS |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
our $plugins = Perl::Tidy::Sweetened::Pluggable->new(); |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
$plugins->add_filter( |
106
|
|
|
|
|
|
|
Perl::Tidy::Sweetened::Variable::Twigils->new( |
107
|
|
|
|
|
|
|
twigil => '$!', |
108
|
|
|
|
|
|
|
marker => 'TWG_BANG', |
109
|
|
|
|
|
|
|
) ); |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=head1 DESCRIPTION |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
This is a Perl::Tidy::Sweetened filter which enables the use of twigils as |
114
|
|
|
|
|
|
|
defined by the L<Twigils> module. New accepts: |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=over 4 |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
=item twigil |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
twigil => '$!' |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
Declares a new twigil. In this case to be used as C<$!variable>. |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=item marker |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
marker => 'TWG_BANG' |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
Provides a text marker to be used to flag the new keywords during |
129
|
|
|
|
|
|
|
C<prefilter>. The source code will be filtered prior to formatting by |
130
|
|
|
|
|
|
|
Perl::Tidy such that: |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
$!class_attribute |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
is turned into: |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
$__TWG_BANK_1 |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
Then back into the original twigiled variable in the C<postfilter>. |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
=back |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
=head1 AUTHOR |
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
Mark Grimes E<lt>mgrimes@cpan.orgE<gt> |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
=head1 SOURCE |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
Source repository is at L<https://github.com/mvgrimes/Perl-Tidy-Sweetened>. |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
=head1 BUGS |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website L<http://github.com/mvgrimes/Perl-Tidy-Sweetened/issues> |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
155
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
156
|
|
|
|
|
|
|
feature. |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Mark Grimes E<lt>mgrimes@cpan.orgE<gt>. |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
163
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
=cut |