PDepend\Source\Language\PHP\PHPBuilder::buildAstTryStatement PHP Method

buildAstTryStatement() public method

Builds a new try-statement instance.
Since: 0.9.12
public buildAstTryStatement ( string $image ) : PDepend\Source\AST\ASTTryStatement
$image string The source code image for this node.
return PDepend\Source\AST\ASTTryStatement
    public function buildAstTryStatement($image)
    {
        return $this->buildAstNodeInstance('ASTTryStatement', $image);
    }
PHPBuilder