Revision history for indirect
+0.33 2014-09-29 20:20 UTC
+ + Fix : [RT #99083] : Breaks eval in an END block in Win32 pseudo-forks.
+ Thanks Graham Knop for reporting.
+ + Fix : Segfaults during global destruction of a thread or a
+ pseudo-fork.
+
0.32 2014-09-21 20:15 UTC
+ Add : Support for the PERL_OP_PARENT optional feature introduced in
perl 5.21.2.
"Vincent Pit <perl@profvince.com>"
],
"dynamic_config" : 1,
- "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060",
+ "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690",
"license" : [
"perl_5"
],
"url" : "http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git"
}
},
- "version" : "0.32"
+ "version" : "0.33"
}
Config: '0'
ExtUtils::MakeMaker: '0'
dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142060'
+generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.142690'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
homepage: http://search.cpan.org/dist/indirect/
license: http://dev.perl.org/licenses/
repository: http://git.profvince.com/?p=perl%2Fmodules%2Findirect.git
-version: '0.32'
+version: '0.33'
indirect - Lexically warn about using the indirect method call syntax.
VERSION
- Version 0.32
+ Version 0.33
SYNOPSIS
In a script :
is due to a shortcoming in the way perl handles the hints hash, which is
addressed in perl 5.10.
+ Indirect constructs that appear in code "eval"'d during the global
+ destruction phase of a spawned thread or pseudo-fork (the processes used
+ internally for the "fork" emulation on Windows) are not reported.
+
The search for indirect method calls happens before constant folding.
Hence "my $x = new Class if 0" will be caught.
=head1 VERSION
-Version 0.32
+Version 0.33
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.32';
+ $VERSION = '0.33';
}
=head1 SYNOPSIS