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

buildAstThrowStatement() public method

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