1PPI::Token::QuoteLike(3U)ser Contributed Perl DocumentatiPoPnI::Token::QuoteLike(3)
2
3
4
6 PPI::Token::QuoteLike - Quote-like operator abstract base class
7
9 PPI::Token::QuoteLike
10 isa PPI::Token
11 isa PPI::Element
12
14 The "PPI::Token::QuoteLike" class is never instantiated, and simply
15 provides a common abstract base class for the five quote-like operator
16 classes. In PPI, a "quote-like" is the set of quote-like things that
17 exclude the string quotes and regular expressions.
18
19 The subclasses of "PPI::Token::QuoteLike" are:
20
21 qw{} - PPI::Token::QuoteLike::Words
22 `` - PPI::Token::QuoteLike::Backtick
23 qx{} - PPI::Token::QuoteLike::Command
24 qr// - PPI::Token::QuoteLike::Regexp
25 <FOO> - PPI::Token::QuoteLike::Readline
26
27 The names are hopefully obvious enough not to have to explain what each
28 class is. See their pages for more details.
29
30 You may note that the backtick and command quote-like are treated
31 separately, even though they do the same thing. This is intentional, as
32 the inherit from and are processed by two different parts of the PPI's
33 quote engine.
34
36 See the support section in the main module.
37
39 Adam Kennedy <adamk@cpan.org>
40
42 Copyright 2001 - 2011 Adam Kennedy.
43
44 This program is free software; you can redistribute it and/or modify it
45 under the same terms as Perl itself.
46
47 The full text of the license can be found in the LICENSE file included
48 with this module.
49
50
51
52perl v5.32.0 2020-07-28 PPI::Token::QuoteLike(3)