]> git.vpit.fr Git - perl/modules/indirect.git/blob - lib/indirect.pm
Better be on irc.perl.org
[perl/modules/indirect.git] / lib / indirect.pm
1 package indirect;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 indirect - Lexically warn about using the indirect object syntax.
9
10 =head1 VERSION
11
12 Version 0.05
13
14 =cut
15
16 our $VERSION;
17 BEGIN {
18  $VERSION = '0.05';
19 }
20
21 =head1 SYNOPSIS
22
23     no indirect;
24     my $x = new Apple 1, 2, 3; # warns
25     {
26      use indirect;
27      my $y = new Pear; # ok
28     }
29     no indirect ':fatal';
30     if (defied $foo) { ... } # croaks, note the typo
31
32 =head1 DESCRIPTION
33
34 When enabled (or disabled as some may prefer to say, since you actually turn it on by calling C<no indirect>), this pragma warns about indirect object syntax constructs that may have slipped into your code. This syntax is now considered harmful, since its parsing has many quirks and its use is error prone (when C<sub> isn't defined, C<sub $x> is actually interpreted as C<< $x->sub >>).
35
36 It currently does not warn when the object is enclosed between braces (like C<meth { $obj } @args>) or for core functions (C<print> or C<say>). This may change in the future, or may be added as optional features that would be enabled by passing options to C<unimport>.
37
38 This module is B<not> a source filter.
39
40 =head1 METHODS
41
42 =head2 C<unimport @opts>
43
44 Magically called when C<no indirect @opts> is encountered. Turns the module on. If C<@opts> contains C<':fatal'>, the module will croak on the first indirect syntax met.
45
46 =head2 C<import>
47
48 Magically called at each C<use indirect>. Turns the module off.
49
50 =cut
51
52 BEGIN {
53  require XSLoader;
54  XSLoader::load(__PACKAGE__, $VERSION);
55 }
56
57 sub import {
58  $^H{indirect} = undef;
59 }
60
61 sub unimport {
62  (undef, my $type) = @_;
63  $^H{indirect} = (defined $type and $type eq ':fatal') ? 2 : 1;
64 }
65
66 =head1 DEPENDENCIES
67
68 L<perl> 5.9.4.
69
70 L<XSLoader> (standard since perl 5.006).
71
72 =head1 AUTHOR
73
74 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
75
76 You can contact me by mail or on C<irc.perl.org> (vincent).
77
78 =head1 BUGS
79
80 Please report any bugs or feature requests to C<bug-indirect at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=indirect>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
81
82 =head1 SUPPORT
83
84 You can find documentation for this module with the perldoc command.
85
86     perldoc indirect
87
88 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/indirect>.
89
90 =head1 ACKNOWLEDGEMENTS
91
92 Bram, for motivation and advices.
93
94 =head1 COPYRIGHT & LICENSE
95
96 Copyright 2008 Vincent Pit, all rights reserved.
97
98 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
99
100 =cut
101
102 1; # End of indirect