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              
2             use strict;
3 9     9   107 use warnings;
  9         30  
  9         238  
4 9     9   45  
  9         31  
  9         214  
5             use parent 'PLS::Server::Request';
6 9     9   109  
  9         17  
  9         79  
7             use PLS::Server::Response::SignatureHelp;
8 9     9   3615  
  9         27  
  9         594  
9             =head1 NAME
10              
11             PLS::Server::Request::TextDocument::SignatureHelp
12              
13             =head1 DESCRIPTION
14              
15             This is a message from the client to the server requesting
16             information on the parameters of a function at a given location.
17              
18             =cut
19              
20             {
21             my ($self) = @_;
22              
23 0     0 0   return PLS::Server::Response::SignatureHelp->new($self);
24             }
25 0            
26             1;