| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use strict; |
|
3
|
9
|
|
|
9
|
|
109
|
use warnings; |
|
|
9
|
|
|
|
|
82
|
|
|
|
9
|
|
|
|
|
341
|
|
|
4
|
9
|
|
|
9
|
|
60
|
|
|
|
9
|
|
|
|
|
115
|
|
|
|
9
|
|
|
|
|
323
|
|
|
5
|
|
|
|
|
|
|
use parent 'PLS::Server::Request'; |
|
6
|
9
|
|
|
9
|
|
46
|
|
|
|
9
|
|
|
|
|
103
|
|
|
|
9
|
|
|
|
|
53
|
|
|
7
|
|
|
|
|
|
|
use PLS::Server::Response::RangeFormatting; |
|
8
|
9
|
|
|
9
|
|
3498
|
|
|
|
9
|
|
|
|
|
107
|
|
|
|
9
|
|
|
|
|
2308
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
PLS::Server::Request::TextDocument::RangeFormatting |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This is a message from the client to the server requesting that |
|
16
|
|
|
|
|
|
|
the server format a section of the current document. |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
{ |
|
21
|
|
|
|
|
|
|
my ($self) = @_; |
|
22
|
|
|
|
|
|
|
|
|
23
|
0
|
|
|
0
|
0
|
|
return PLS::Server::Response::RangeFormatting->new($self); |
|
24
|
|
|
|
|
|
|
} |
|
25
|
0
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |