Mercurial > hg > isophonics-drupal-site
annotate vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/TryCatch.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 5fb285c0d0e3 |
children |
rev | line source |
---|---|
Chris@13 | 1 <?php declare(strict_types=1); |
Chris@0 | 2 |
Chris@0 | 3 namespace PhpParser\Node\Stmt; |
Chris@0 | 4 |
Chris@0 | 5 use PhpParser\Node; |
Chris@0 | 6 |
Chris@0 | 7 class TryCatch extends Node\Stmt |
Chris@0 | 8 { |
Chris@13 | 9 /** @var Node\Stmt[] Statements */ |
Chris@0 | 10 public $stmts; |
Chris@0 | 11 /** @var Catch_[] Catches */ |
Chris@0 | 12 public $catches; |
Chris@0 | 13 /** @var null|Finally_ Optional finally node */ |
Chris@0 | 14 public $finally; |
Chris@0 | 15 |
Chris@0 | 16 /** |
Chris@0 | 17 * Constructs a try catch node. |
Chris@0 | 18 * |
Chris@13 | 19 * @param Node\Stmt[] $stmts Statements |
Chris@0 | 20 * @param Catch_[] $catches Catches |
Chris@0 | 21 * @param null|Finally_ $finally Optionaly finally node |
Chris@13 | 22 * @param array $attributes Additional attributes |
Chris@0 | 23 */ |
Chris@13 | 24 public function __construct(array $stmts, array $catches, Finally_ $finally = null, array $attributes = []) { |
Chris@0 | 25 parent::__construct($attributes); |
Chris@0 | 26 $this->stmts = $stmts; |
Chris@0 | 27 $this->catches = $catches; |
Chris@0 | 28 $this->finally = $finally; |
Chris@0 | 29 } |
Chris@0 | 30 |
Chris@13 | 31 public function getSubNodeNames() : array { |
Chris@13 | 32 return ['stmts', 'catches', 'finally']; |
Chris@13 | 33 } |
Chris@13 | 34 |
Chris@13 | 35 public function getType() : string { |
Chris@13 | 36 return 'Stmt_TryCatch'; |
Chris@0 | 37 } |
Chris@0 | 38 } |