File: NotNode.pm

package info (click to toggle)
libcql-parser-perl 1.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 316 kB
  • sloc: perl: 2,388; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package CQL::NotNode;

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

=head1 NAME

CQL::NotNode - represents a NOT node in a CQL parse tree

=head1 SYNOPSIS

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

=head1 DESCRIPTION

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

=cut

sub op { return 'not'; }

1;