File Coverage

blib/lib/CQL/OrNode.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package CQL::OrNode;
2              
3 8     8   1497 use strict;
  8         16  
  8         258  
4 8     8   45 use warnings;
  8         14  
  8         216  
5 8     8   38 use base qw( CQL::BooleanNode );
  8         31  
  8         791  
6              
7             =head1 NAME
8              
9             CQL::OrNode - represents an OR node in a CQL parse tree
10              
11             =head1 SYNOPSIS
12              
13             use CQL::OrNode;
14             my $node = CQL::OrNode->new( left => $left, right => $right );
15              
16             =head1 DESCRIPTION
17              
18             CQL::OrNode inherits from CQL::BooleanNode, where you'll find most of
19             the functionality.
20              
21             =cut
22              
23 16     16 0 84 sub op { return 'or'; }
24              
25             1;