PDepend\Source\Language\PHP\PHPBuilder::buildAstThrowStatement PHP Méthode

buildAstThrowStatement() public méthode

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.
Résultat PDepend\Source\AST\ASTThrowStatement
    public function buildAstThrowStatement($image)
    {
        return $this->buildAstNodeInstance('ASTThrowStatement', $image);
    }
PHPBuilder