| blib/lib/PLS/Server/State.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 6 | 6 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 |
| pod | n/a | ||
| total | 8 | 8 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package PLS::Server::State; | ||||||
| 2 | |||||||
| 3 | 11 | 11 | 68 | use strict; | |||
| 11 | 49 | ||||||
| 11 | 291 | ||||||
| 4 | 11 | 11 | 55 | use warnings; | |||
| 11 | 21 | ||||||
| 11 | 842 | ||||||
| 5 | |||||||
| 6 | our $INITIALIZED = 0; | ||||||
| 7 | our $ROOT_PATH; | ||||||
| 8 | our $CONFIG = {perltidy => {}, perlcritic => {}}; | ||||||
| 9 | our $SHUTDOWN = 0; | ||||||
| 10 | our $CLIENT_CAPABILITIES; | ||||||
| 11 | |||||||
| 12 | =head1 NAME | ||||||
| 13 | |||||||
| 14 | PLS::Server::State | ||||||
| 15 | |||||||
| 16 | =head1 DESCRIPTION | ||||||
| 17 | |||||||
| 18 | This module contains package variables containing server state. | ||||||
| 19 | |||||||
| 20 | =cut | ||||||
| 21 | |||||||
| 22 | 1; |