File Coverage

blib/lib/Thrift/IDL/Namespace.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Thrift::IDL::Namespace;
2              
3             =head1 NAME
4              
5             Thrift::IDL::Namespace
6              
7             =head1 DESCRIPTION
8              
9             Inherits from L
10              
11             =cut
12              
13 6     6   41 use strict;
  6         17  
  6         322  
14 6     6   35 use warnings;
  6         12  
  6         211  
15 6     6   34 use base qw(Thrift::IDL::Header);
  6         14  
  6         721  
16             __PACKAGE__->mk_accessors(qw(scope value));
17              
18             =head1 METHODS
19              
20             =head2 scope
21              
22             =head2 value
23              
24             Scalar accessors
25              
26             =cut
27              
28             1;