File Coverage

blib/lib/CQL/AndNode.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::AndNode;
2              
3 9     9   5009 use strict;
  9         20  
  9         508  
4 9     9   57 use warnings;
  9         18  
  9         386  
5 9     9   47 use base qw( CQL::BooleanNode );
  9         17  
  9         6738  
6              
7             =head1 NAME
8              
9             CQL::AndNode - represents an AND node in a CQL parse tree
10              
11             =head1 SYNOPSIS
12              
13             use CQL::AndNode;
14             my $node = CQL::AndNode->new( left => $left, right => $right );
15              
16             =head1 DESCRIPTION
17              
18             CQL::AndNode inherits from CQL::BooleanNode, where you will find
19             most of the functionality.
20              
21             =cut
22              
23 20     20 0 109 sub op { return 'and'; }
24              
25             1;