Initial Drupal 11 with DDEV setup
This commit is contained in:
121
vendor/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php
vendored
Normal file
121
vendor/mck89/peast/lib/Peast/Syntax/Node/TryStatement.php
vendored
Normal file
@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the Peast package
|
||||
*
|
||||
* (c) Marco Marchiò <marco.mm89@gmail.com>
|
||||
*
|
||||
* For the full copyright and license information refer to the LICENSE file
|
||||
* distributed with this source code
|
||||
*/
|
||||
namespace Peast\Syntax\Node;
|
||||
|
||||
/**
|
||||
* A node that represents a try-catch statement.
|
||||
*
|
||||
* @author Marco Marchiò <marco.mm89@gmail.com>
|
||||
*/
|
||||
class TryStatement extends Node implements Statement
|
||||
{
|
||||
/**
|
||||
* Map of node properties
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $propertiesMap = array(
|
||||
"block" => true,
|
||||
"handler" => true,
|
||||
"finalizer" => true
|
||||
);
|
||||
|
||||
/**
|
||||
* Wrapped block
|
||||
*
|
||||
* @var BlockStatement
|
||||
*/
|
||||
protected $block;
|
||||
|
||||
/**
|
||||
* Catch clause
|
||||
*
|
||||
* @var CatchClause
|
||||
*/
|
||||
protected $handler;
|
||||
|
||||
/**
|
||||
* "finally" block
|
||||
*
|
||||
* @var BlockStatement
|
||||
*/
|
||||
protected $finalizer;
|
||||
|
||||
/**
|
||||
* Returns the wrapped block
|
||||
*
|
||||
* @return BlockStatement
|
||||
*/
|
||||
public function getBlock()
|
||||
{
|
||||
return $this->block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the wrapped block
|
||||
*
|
||||
* @param BlockStatement $block Wrapped block
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBlock(BlockStatement $block)
|
||||
{
|
||||
$this->block = $block;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the catch clause
|
||||
*
|
||||
* @return CatchClause
|
||||
*/
|
||||
public function getHandler()
|
||||
{
|
||||
return $this->handler;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the catch clause
|
||||
*
|
||||
* @param CatchClause $handler Catch clause
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setHandler($handler)
|
||||
{
|
||||
$this->assertType($handler, "CatchClause", true);
|
||||
$this->handler = $handler;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the "finally" block
|
||||
*
|
||||
* @return BlockStatement
|
||||
*/
|
||||
public function getFinalizer()
|
||||
{
|
||||
return $this->finalizer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the "finally" block
|
||||
*
|
||||
* @param BlockStatement $finalizer The "finally" block
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setFinalizer($finalizer)
|
||||
{
|
||||
$this->assertType($finalizer, "BlockStatement", true);
|
||||
$this->finalizer = $finalizer;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user