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