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             package PLS::Server::Request::TextDocument::Completion;
2              
3 11     11   78 use strict;
  11         167  
  11         649  
4 11     11   73 use warnings;
  11         24  
  11         629  
5              
6 11     11   71 use parent 'PLS::Server::Request';
  11         15  
  11         113  
7              
8 11     11   7969 use PLS::Server::Response::Completion;
  11         62  
  11         1277  
9              
10             =head1 NAME
11              
12             PLS::Server::Request::TextDocument::Completion
13              
14             =head1 DESCRIPTION
15              
16             This is a message from the client to the server requesting
17             that the server provide a list of completion items for the
18             current cursor position.
19              
20             =cut
21              
22             sub service
23             {
24 0     0 0   my ($self) = @_;
25              
26 0           return PLS::Server::Response::Completion->new($self);
27             }
28              
29             1;