/usr/share/perl5/Aspect/Point/Static.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 57 | package Aspect::Point::Static;
use strict;
use Carp ();
use Aspect::Point ();
our $VERSION = '1.04';
our @ISA = 'Aspect::Point';
######################################################################
# Error on anything this doesn't support
sub return_value {
Carp::croak("Cannot call return_value on static part of a join point");
}
sub AUTOLOAD {
my $self = shift;
my $key = our $AUTOLOAD;
$key =~ s/^.*:://;
Carp::croak("Cannot call $key on static part of join point");
}
1;
__END__
=pod
=head1 NAME
Aspect::Point::Static - The Join Point context for join point static parts
=head1 DESCRIPTION
This class implements the "static part" join point object, normally
encounted during (and stored by) the C<cflow> pointcut declarator.
It implements the subset of L<Aspect::Point> methods relating to the join
point in general and not relating to the specific call to the join point.
=head1 AUTHORS
Adam Kennedy E<lt>adamk@cpan.orgE<gt>
=head1 COPYRIGHT
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
|