File Coverage

blib/lib/PLS/Server/Request/TextDocument/Completion.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 9     9   53 use warnings;
  9         18  
  9         197  
4 9     9   44  
  9         10  
  9         195  
5             use parent 'PLS::Server::Request';
6 9     9   52  
  9         25  
  9         68  
7             use PLS::Server::Response::Completion;
8 9     9   3960  
  9         43  
  9         686  
9             =head1 NAME
10              
11             PLS::Server::Request::TextDocument::Completion
12              
13             =head1 DESCRIPTION
14              
15             This is a message from the client to the server requesting
16             that the server provide a list of completion items for the
17             current cursor position.
18              
19             =cut
20              
21             {
22             my ($self) = @_;
23              
24 0     0 0   return PLS::Server::Response::Completion->new($self);
25             }
26 0            
27             1;