File Coverage

blib/lib/PLS/Server/Request/Workspace/Symbol.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::Workspace::Symbol;
2              
3 9     9   56 use strict;
  9         18  
  9         218  
4 9     9   44 use warnings;
  9         18  
  9         190  
5              
6 9     9   36 use parent 'PLS::Server::Request';
  9         18  
  9         36  
7              
8 9     9   3808 use PLS::Server::Response::WorkspaceSymbols;
  9         19  
  9         725  
9              
10             sub service
11             {
12 0     0 0   my ($self) = @_;
13              
14 0           return PLS::Server::Response::WorkspaceSymbols->new($self);
15             }
16              
17             1;