File Coverage

blib/lib/PLS/Server/Request/CompletionItem/Resolve.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::CompletionItem::Resolve;
2              
3 11     11   69 use strict;
  11         31  
  11         564  
4 11     11   64 use warnings;
  11         23  
  11         638  
5              
6 11     11   77 use parent 'PLS::Server::Request';
  11         24  
  11         121  
7              
8 11     11   8032 use PLS::Server::Response::Resolve;
  11         62  
  11         1123  
9              
10             =head1 NAME
11              
12             PLS::Server::Request::CompletionItem::Resolve
13              
14             =head1 DESCRIPTION
15              
16             This is a message from the client to the server requesting that
17             a completion item be resolved with additional information.
18              
19             =cut
20              
21             sub service
22             {
23 0     0 0   my ($self) = @_;
24              
25 0           return PLS::Server::Response::Resolve->new($self);
26             }
27              
28             1;