2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property PHPParser_Node_Name $type Class of exception
|
2011-09-23 18:45:29 +02:00
|
|
|
* @property string $var Variable for exception
|
|
|
|
* @property PHPParser_Node[] $stmts Statements
|
2011-06-05 18:40:04 +02:00
|
|
|
*/
|
|
|
|
class PHPParser_Node_Stmt_Catch extends PHPParser_Node_Stmt
|
|
|
|
{
|
2011-09-23 18:45:29 +02:00
|
|
|
/**
|
|
|
|
* Constructs a catch node.
|
|
|
|
*
|
|
|
|
* @param PHPParser_Node_Name $type Class of exception
|
|
|
|
* @param string $var Variable for exception
|
|
|
|
* @param PHPParser_Node[] $stmts Statements
|
|
|
|
* @param int $line Line
|
|
|
|
* @param null|string $docComment Nearest doc comment
|
|
|
|
*/
|
|
|
|
public function __construct(PHPParser_Node_Name $type, $var, array $stmts, $line = -1, $docComment = null) {
|
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'type' => $type,
|
|
|
|
'var' => $var,
|
|
|
|
'stmts' => $stmts,
|
|
|
|
),
|
|
|
|
$line, $docComment
|
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|