Even I'm not getting, why it is not working for "Test 4" ...
Module.pm
package Module;
use strict;
use warnings;
use Attribute::Handlers;
#sub TRACE :ATTR(CODE) { # Test 1
#sub TRACE :ATTR(CODE,INIT) { # Test 2
#sub TRACE :ATTR(CODE,CHECK) { # Test 3
sub TRACE :ATTR(CODE,BEGIN) { # Test 4
my ($pkg, $sym, $ref, $attr, $data, $phase, $file, $line) = @_;
*{ $sym } = sub {
warn "$file($line) called with [@_]\n";
my( @rc )= &$ref;
warn "$file($line): returning [ @rc ]\n";
}
}
sub new :TRACE{
my $instance = shift;
my $class = ref($instance) || $instance;
my $self = {};
return bless($self, $class);
}
END { }
1;
__END__
Test.pl
#!/usr/local/bin/perl
use strict;
use warnings;
my $module_to_load = 'Module';
eval "use $module_to_load;";
# Create object
my $obj = Module->new();
print "REF: " . ref($obj) ."\n";
Results:
Test 1: Code compiles and executes, but without ATTR support.
Test 2: Code compiles and executes, but without ATTR support.
Test 3: Code compiles and executes, but without ATTR support.
Test 4: Code throws and error msg as -
Can't locate object method "new" via package "Module" at ./Test.pl line 10.
perl version: This is perl, v5.8.5 built for i386-linux-thread-multi
OS version: Linux <host> 2.6.9-67.EL #1 Wed Nov 7 13:41:13 EST 2007 i686 i686 i386 GNU/Linux
Thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|