Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / PPI / Token / Regexp / Substitute.pm
CommitLineData
3fea05b9 1package PPI::Token::Regexp::Substitute;
2
3=pod
4
5=head1 NAME
6
7PPI::Token::Regexp::Substitute - A match and replace regular expression token
8
9=head1 INHERITANCE
10
11 PPI::Token::Regexp::Substitute
12 isa PPI::Token::Regexp
13 isa PPI::Token
14 isa PPI::Element
15
16=head1 SYNOPSIS
17
18 $text =~ s/find/$replace/;
19
20=head1 DESCRIPTION
21
22A C<PPI::Token::Regexp::Substitute> object represents a single substitution
23regular expression.
24
25=head1 METHODS
26
27There are no methods available for C<PPI::Token::Regexp::Substitute>
28beyond those provided by the parent L<PPI::Token::Regexp>, L<PPI::Token>
29and L<PPI::Element> classes.
30
31Got any ideas for methods? Submit a report to rt.cpan.org!
32
33=cut
34
35use strict;
36use PPI::Token::Regexp ();
37use PPI::Token::_QuoteEngine::Full ();
38
39use vars qw{$VERSION @ISA};
40BEGIN {
41 $VERSION = '1.206';
42 @ISA = qw{
43 PPI::Token::_QuoteEngine::Full
44 PPI::Token::Regexp
45 };
46}
47
481;
49
50=pod
51
52=head1 SUPPORT
53
54See the L<support section|PPI/SUPPORT> in the main module.
55
56=head1 AUTHOR
57
58Adam Kennedy E<lt>adamk@cpan.orgE<gt>
59
60=head1 COPYRIGHT
61
62Copyright 2001 - 2009 Adam Kennedy.
63
64This program is free software; you can redistribute
65it and/or modify it under the same terms as Perl itself.
66
67The full text of the license can be found in the
68LICENSE file included with this module.
69
70=cut