/usr/share/perl5/CQL/OrNode.pm is in libcql-parser-perl 1.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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::OrNode;
use strict;
use warnings;
use base qw( CQL::BooleanNode );
=head1 NAME
CQL::OrNode - represents an OR node in a CQL parse tree
=head1 SYNOPSIS
use CQL::OrNode;
my $node = CQL::OrNode->new( left => $left, right => $right );
=head1 DESCRIPTION
CQL::OrNode inherits from CQL::BooleanNode, where you'll find most of
the functionality.
=cut
sub op { return 'or'; }
1;
|