1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/TryCatch.php

35 lines
929 B
PHP
Raw Normal View History

<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
class TryCatch extends Node\Stmt
{
/** @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;
/**
* 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
*/
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);
$this->stmts = $stmts;
$this->catches = $catches;
2016-07-25 14:25:04 +02:00
$this->finally = $finally;
}
public function getSubNodeNames() {
2016-07-25 14:25:04 +02:00
return array('stmts', 'catches', 'finally');
}
}