Query: ppi::statement::variable
OS: osx
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PPI::Statement::Variable(3) User Contributed Perl Documentation PPI::Statement::Variable(3)NAMEPPI::Statement::Variable - Variable declaration statementsSYNOPSIS# All of the following are variable declarations my $foo = 1; my ($foo, $bar) = (1, 2); our $foo = 1; local $foo; local $foo = 1; LABEL: my $foo = 1;INHERITANCEPPI::Statement::Variable isa PPI::Statement::Expression isa PPI::Statement isa PPI::Node isa PPI::ElementDESCRIPTIONThe main intent of the "PPI::Statement::Variable" class is to describe simple statements that explicitly declare new local or global variables. Note that this does not make it exclusively the only place where variables are defined, and later on you should expect that the "variables" method will migrate deeper down the tree to either PPI::Statement or PPI::Node to recognise this fact, but for now it stays here.METHODStype The "type" method checks and returns the declaration type of the statement, which will be one of 'my', 'local', 'our', or 'state'. Returns a string of the type, or "undef" if the type cannot be detected (which is probably a bug). variables As for several other PDOM Element types that can declare variables, the "variables" method returns a list of the canonical forms of the variables defined by the statement. Returns a list of the canonical string forms of variables, or the null list if it is unable to find any variables. symbols Returns a list of the variables defined by the statement, as PPI::Token::Symbols.TO DO- Write unit tests for thisSUPPORTSee the support section in the main module.AUTHORAdam Kennedy <adamk@cpan.org>COPYRIGHTCopyright 2001 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.16.2 2011-02-25 PPI::Statement::Variable(3)
Related Man Pages |
---|
ppi::statement::null(3) - mojave |
ppi::statement::variable(3) - osx |
ppi::statement::variable(3) - centos |
ppi::statement::null(3) - centos |
ppi::statement::null(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
How to get an Indirect Variable Value..? |
difficult problem with function declaration |
Match exact Variable in Awk |
Variable on If Statement |
Dynamic Variable creation |