NAME
Aspect::Point::Functions - Allow point context methods to be called as functions
SYNOPSIS
# This code is equivalent to the SYNOPSIS for Aspect::Point
my
$advice_code
=
sub
{
type;
# The advice type ('before')
pointcut;
# The matching pointcut ($pointcut)
enclosing;
# Access cflow pointcut advice context
sub_name;
# The full package_name::sub_name
package_name;
# The package name ('Person')
short_name;
# The sub name (a get or set method)
self;
# 1st parameter to the matching sub
(args)[1];
# 2nd parameter to the matching sub
original->(
x
=> 3 );
# Call matched sub independently
return_value(4)
# Set the return value
};
DESCRIPTION
In the AspectJ toolkit for Java which Aspect is inspired by, the join point context information is retrieved through certain keywords.
In Aspect this initially proved too difficult to achieve without heavy source code rewriting, and so an alternative approach was taken using a topic object and methods.
This experimental package attempts to implement the original function/keyword style of call.
It is considered unsupported at this time.
AUTHORS
Adam Kennedy <adamk@cpan.org>
COPYRIGHT
Copyright 2011 Adam Kennedy.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.