2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 17:33:03 +02:00
|
|
|
/**
|
2011-10-28 19:06:24 +02:00
|
|
|
* @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
|
2011-05-29 17:33:03 +02:00
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_For extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-10-28 19:06:24 +02:00
|
|
|
/**
|
|
|
|
* Constructs a for loop node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @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 array $attributes Additional attributes
|
2011-10-28 19:06:24 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $subNodes = array(), array $attributes = array()) {
|
2011-10-28 19:06:24 +02:00
|
|
|
parent::__construct(
|
|
|
|
$subNodes + array(
|
|
|
|
'init' => array(),
|
|
|
|
'cond' => array(),
|
|
|
|
'loop' => array(),
|
|
|
|
'stmts' => array(),
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-28 19:06:24 +02:00
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|