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 11     11   52 use strict;
  11         23  
  11         395  
4 11     11   62 use warnings;
  11         29  
  11         727  
5              
6 11     11   61 use parent 'PLS::Server::Request';
  11         15  
  11         60  
7              
8 11     11   5944 use PLS::Server::Response::WorkspaceSymbols;
  11         44  
  11         812  
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;