Aspect::Hook - Holding area for internal generated code


Aspect documentation Contained in the Aspect distribution.

Index


Code Index:

NAME

Top

Aspect::Hook - Holding area for internal generated code

DESCRIPTION

Top

During the weaving process Aspect needs do a large amount of code generation and it is important that this generated code is kept away from the target packages to prevent accidental collisions and other pollution.

To prevent this, all of the generated code is produced in a dedicated and isolated namespace.

Aspect::Hook is the namespace in which this happens. Beyond this purpose, this class services no other purpose.

AUTHORS

Top

Adam Kennedy <adamk@cpan.org>

Marcel Grünauer <marcel@cpan.org>

Ran Eilam <eilara@cpan.org>

COPYRIGHT

Top


Aspect documentation Contained in the Aspect distribution.

package Aspect::Hook;

use strict;
use warnings;

our $VERSION = '1.01';

1;

__END__