/usr/share/perl5/Aspect/Pointcut/Logic.pm is in libaspect-perl 1.04-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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | package Aspect::Pointcut::Logic;
# A base class for logic pointcuts
use strict;
use Carp ();
use Params::Util ();
use Aspect::Pointcut ();
our $VERSION = '1.04';
our @ISA = 'Aspect::Pointcut';
sub match_runtime {
return 0;
}
1;
__END__
=pod
=head1 NAME
Aspect::Pointcut::Logic - Pointcut logic role
=head1 DESCRIPTION
A typical real world L<Aspect::Pointcut> object tree will contain a variety of
different conditions. To combine these together a family of logic pointcuts
are used.
All of these can be identified by calling
C<-E<gt>isa('Aspect::Pointcut::Logic')> on them.
This role is used primarily by the optimiser during the execution of various
strategies, and does not have a significant use directly.
=head1 AUTHORS
Adam Kennedy E<lt>adamk@cpan.orgE<gt>
Marcel GrE<uuml>nauer E<lt>marcel@cpan.orgE<gt>
Ran Eilam E<lt>eilara@cpan.orgE<gt>
=head1 COPYRIGHT
Copyright 2001 by Marcel GrE<uuml>nauer
Some parts copyright 2009 - 2013 Adam Kennedy.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|