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

buildAstAllocationExpression() public method

Builds a new allocation expression node.
Since: 0.9.6
public buildAstAllocationExpression ( string $image ) : PDepend\Source\AST\ASTAllocationExpression
$image string The source image of this expression.
return PDepend\Source\AST\ASTAllocationExpression
    public function buildAstAllocationExpression($image)
    {
        return $this->buildAstNodeInstance('ASTAllocationExpression', $image);
    }
PHPBuilder