mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
31 lines
707 B
PHP
31 lines
707 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class While_ extends Node\Stmt
|
|
{
|
|
/** @var Node\Expr Condition */
|
|
public $cond;
|
|
/** @var Node[] Statements */
|
|
public $stmts;
|
|
|
|
/**
|
|
* Constructs a while node.
|
|
*
|
|
* @param Node\Expr $cond Condition
|
|
* @param Node[] $stmts Statements
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(Node\Expr $cond, array $stmts = array(), array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->cond = $cond;
|
|
$this->stmts = $stmts;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('cond', 'stmts');
|
|
}
|
|
}
|