CQL::OrNode - represents an OR node in a CQL parse tree


CQL-Parser documentation Contained in the CQL-Parser distribution.

Index


Code Index:

NAME

Top

CQL::OrNode - represents an OR node in a CQL parse tree

SYNOPSIS

Top

    use CQL::OrNode;
    my $node = CQL::OrNode->new( left => $left, right => $right );

DESCRIPTION

Top

CQL::OrNode inherits from CQL::BooleanNode, where you'll find most of the functionality.


CQL-Parser documentation Contained in the CQL-Parser distribution.

package CQL::OrNode;

use strict;
use warnings;
use base qw( CQL::BooleanNode );

sub op { return 'or'; }

1;