File Coverage

blib/lib/PLS/Server/Request/TextDocument/SignatureHelp.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::SignatureHelp;
2              
3 11     11   122 use strict;
  11         31  
  11         754  
4 11     11   980 use warnings;
  11         56  
  11         911  
5              
6 11     11   261 use parent 'PLS::Server::Request';
  11         168  
  11         502  
7              
8 11     11   9742 use PLS::Server::Response::SignatureHelp;
  11         71  
  11         1198  
9              
10             =head1 NAME
11              
12             PLS::Server::Request::TextDocument::SignatureHelp
13              
14             =head1 DESCRIPTION
15              
16             This is a message from the client to the server requesting
17             information on the parameters of a function at a given location.
18              
19             =cut
20              
21             sub service
22             {
23 0     0 0   my ($self) = @_;
24              
25 0           return PLS::Server::Response::SignatureHelp->new($self);
26             }
27              
28             1;