mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-11 16:49:43 +01:00
f202aa9814
For nodes that accept many optional arguments I chose to keep the $subNodes argument, but provide default values instead.
33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @property PHPParser_Node_Expr[] $init Init expressions
|
|
* @property PHPParser_Node_Expr[] $cond Loop conditions
|
|
* @property PHPParser_Node_Expr[] $loop Loop expressions
|
|
* @property PHPParser_Node[] $stmts Statements
|
|
*/
|
|
class PHPParser_Node_Stmt_For extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* Constructs a for loop node.
|
|
*
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
* 'init' => array(): Init expressions
|
|
* 'cond' => array(): Loop conditions
|
|
* 'loop' => array(): Loop expressions
|
|
* 'stmts' => array(): Statements
|
|
* @param int $line Line
|
|
* @param null|string $docComment Nearest doc comment
|
|
*/
|
|
public function __construct(array $subNodes = array(), $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
$subNodes + array(
|
|
'init' => array(),
|
|
'cond' => array(),
|
|
'loop' => array(),
|
|
'stmts' => array(),
|
|
),
|
|
$line, $docComment
|
|
);
|
|
}
|
|
} |