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

buildAstCastExpression() public method

Builds a new cast-expression node instance.
Since: 0.10.0
public buildAstCastExpression ( string $image ) : PDepend\Source\AST\ASTCastExpression
$image string The cast-expression image/character.
return PDepend\Source\AST\ASTCastExpression
    public function buildAstCastExpression($image)
    {
        return $this->buildAstNodeInstance('ASTCastExpression', $image);
    }
PHPBuilder