File Coverage

blib/lib/PLS/Server/Request/TextDocument/Formatting.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 9     9   62 use warnings;
  9         18  
  9         226  
4 9     9   45  
  9         10  
  9         212  
5             use parent 'PLS::Server::Request';
6 9     9   37  
  9         18  
  9         36  
7             use PLS::Server::Response::Formatting;
8 9     9   3884  
  9         331  
  9         1850  
9             =head1 NAME
10              
11             PLS::Server::Request::TextDocument::Formatting
12              
13             =head1 DESCRIPTION
14              
15             This is a message from the client to the server requesting that
16             the server format the current document.
17              
18             =cut
19              
20             {
21             my ($self) = @_;
22              
23 1     1 0 8 return PLS::Server::Response::Formatting->new($self);
24             }
25 1         25  
26             1;