1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
package LatexIndent::RoundBrackets;
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# See http://www.gnu.org/licenses/.
#
# Chris Hughes, 2017
#
# For all communication, please visit: https://github.com/cmhughes/latexindent.pl
use strict;
use warnings;
use LatexIndent::Tokens qw/%tokens/;
use LatexIndent::TrailingComments qw/$trailingCommentRegExp/;
use LatexIndent::Switches qw/$is_t_switch_active $is_tt_switch_active/;
use Exporter qw/import/;
our @ISA = "LatexIndent::Document"; # class inheritance, Programming Perl, pg 321
our @EXPORT_OK = qw/find_round_brackets/;
our $roundBracketCounter;
our $roundBracketRegExp = qr/
(?<!\\)
(
\(
\h*
(\R*)
)
(.*?)
(\R*)
(?<!\\) # not immediately pre-ceeded by \
(
\) # [optional arguments]
)
(\h*)
(\R)?
/sx;
sub indent{
return;
}
sub find_round_brackets{
my $self = shift;
# pick out the optional arguments
while(${$self}{body} =~ m/$roundBracketRegExp\h*($trailingCommentRegExp)*(.*)/s){
# log file output
${$self}{body} =~ s/
$roundBracketRegExp(\h*)($trailingCommentRegExp)*(.*)
/
# create a new Optional Argument object
my $roundBracket = LatexIndent::RoundBrackets->new(begin=>$1,
name=>${$self}{name}.":roundBracket",
nameForIndentationSettings=>${$self}{parent},
parent=>${$self}{parent},
body=>$3.($4?$4:q()),
end=>$5,
linebreaksAtEnd=>{
begin=>$2?1:0,
body=>$4?1:0,
end=>$7?1:0,
},
modifyLineBreaksYamlName=>"roundBracket",
# the last argument (determined by $10 eq '') needs information from the argument container object
endImmediatelyFollowedByComment=>($10 eq '')?${$self}{endImmediatelyFollowedByComment}:($9?1:0),
horizontalTrailingSpace=>$6?$6:q(),
);
# the settings and storage of most objects has a lot in common
$self->get_settings_and_store_new_object($roundBracket);
${@{${$self}{children}}[-1]}{replacementText}.($8?$8:q()).($9?$9:q()).($10?$10:q());
/xseg;
}
}
sub yaml_get_object_attribute_for_indentation_settings{
my $self = shift;
return ${$self}{modifyLineBreaksYamlName};
}
sub create_unique_id{
my $self = shift;
$roundBracketCounter++;
${$self}{id} = "$tokens{roundBracket}$roundBracketCounter";
return;
}
sub tasks_particular_to_each_object{
return;
}
1;
|