
Aspect::Weaver - aspect weaving functionality

$weaver = Aspect::Weaver->new;
print join(',', $weaver->get_sub_names); # all wrappable subs
$weaver->install(before => 'Employee::get_name', $wrapper_code);
$weaver->install(after => 'Employee::set_name', $wrapper_code);

Used by Aspect::Advice to get all wrappable subs, and to install a before/after hook on a sub. Uses Aspect::Hook::LexWrap for the wrapping itself, and Devel::Symdump for accessing symbol table info.

See the Aspect pod for a guide to the Aspect module.

No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org.

See perlmodinstall for information and options on installing Perl modules.

The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.

Marcel Grünauer, <marcel@cpan.org>
Ran Eilam <eilara@cpan.org>

Copyright 2001 by Marcel Grünauer
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.