This file is indexed.

/usr/share/perl5/End.pm is in libend-perl 2009110401-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
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
package End;

use 5.006;

use strict;
use warnings;
no  warnings 'syntax';

use Exporter;

our @ISA     = qw /Exporter/;
our @EXPORT  = qw /end/;

our $VERSION = '2009110401';

sub end (&) {
    my    $code =  shift;
    # Due to a bug in Perl 5.6.0, we can't just bless $code.
    # But by creating an extra closure, it'll work.
    bless sub {$code -> ()} => __PACKAGE__;
}

DESTROY {$_ [0] -> ()}

1;

__END__

=pod

=head1 NAME 

End - generalized END {}.

=head1 SYNOPSIS

    use End;

    {  my $foo = end {print "Leaving the block\n"};
       ...
       last;    # prints "Leaving the block\n".
       ...
    }


=head1 DESCRIPTION

The module C<End> exports a single subroutine C<end>, which allows
you to set up some code that is run whenever the current block is exited,
regardless whether that is due to a C<return>, C<next>, C<last>, C<redo>,
C<exit>, C<die>, C<goto> or just reaching the end of the block.

To be more precise, C<end> returns an object, that will execute the
code when the object is destroyed; that is, when the variable assigned
to goes out of scope. If the variable is lexical to the current block,
the code will be executed when leaving the block. 

One can force premature execution of the code by undefining the variable
assigned to, or assigning another value to the variable. 

C<end> only takes one argument, a code reference. If one wishes the code
reference to take arguments, wrapping the code reference in a closure
suffices.

=head1 BUGS

Due to a bug in Perl 5.6.0 (and perhaps before), anonymous subroutines
that are not a closure will not go out of scope, not even on program
termination. That is why C<end> wraps the code fragment in a closure.

There is a second bug in Perl 5.6.0 (and perhaps before) why this is
necessary. If the code fragment isn't wrapped in another code reference,
the original subroutine will be blessed in the package, making that C<ref>
on that code no longer returns the right value.

=head1 DEVELOPMENT

The current sources of this module are found on github,
L<< git://github.com/Abigail/end.git >>.

=head1 AUTHOR

This package was written by Abigail, L<< mailto:cpan@abigail.be >>

=head1 COPYRIGHT & LICENSE

Copyright (C) 2000 - 2009, Abigail

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

=cut