2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class TryCatch extends Node\Stmt
|
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var Node[] Statements */
|
|
|
|
public $stmts;
|
|
|
|
/** @var Catch_[] Catches */
|
|
|
|
public $catches;
|
2016-07-25 14:25:04 +02:00
|
|
|
/** @var null|Finally_ Optional finally node */
|
|
|
|
public $finally;
|
2015-02-28 18:44:28 +01:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* Constructs a try catch node.
|
|
|
|
*
|
2016-07-25 14:25:04 +02:00
|
|
|
* @param Node[] $stmts Statements
|
|
|
|
* @param Catch_[] $catches Catches
|
|
|
|
* @param null|Finally_ $finally Optionaly finally node
|
|
|
|
* @param array|null $attributes Additional attributes
|
2014-02-06 14:44:16 +01:00
|
|
|
*/
|
2016-07-25 14:25:04 +02:00
|
|
|
public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = array()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->stmts = $stmts;
|
|
|
|
$this->catches = $catches;
|
2016-07-25 14:25:04 +02:00
|
|
|
$this->finally = $finally;
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
2016-07-25 14:25:04 +02:00
|
|
|
return array('stmts', 'catches', 'finally');
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|