Revision history for indirect
+0.08 2008-10-22 14:45 UTC
+ + Fix : A rare edge case for package whose names are prefix of 'main'.
+ + Tst : Test $$ as variable and state variables.
+
0.07_03 2008-10-17 20:10 UTC
+ Add : Support and tests for variables with spaces after the sigil.
+ Upd : META.yml spec updated to 1.4.
--- #YAML:1.0
name: indirect
-version: 0.07_03
+version: 0.08
abstract: Lexically warn about using the indirect object syntax.
author:
- Vincent Pit <perl@profvince.com>
indirect - Lexically warn about using the indirect object syntax.
VERSION
- Version 0.07_03
+ Version 0.08
SYNOPSIS
no indirect;
XSLoader (standard since perl 5.006).
+CAVEATS
+ "meth $obj" (no semicolon) at the end of a file won't be seen as an
+ indirect object syntax, although it will as soon as there is another
+ token before the end (as in "meth $obj;" or "meth $obj 1").
+
AUTHOR
Vincent Pit, "<perl at profvince.com>", <http://www.profvince.com>.
=head1 VERSION
-Version 0.07_03
+Version 0.08
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.07_03';
+ $VERSION = '0.08';
}
=head1 SYNOPSIS