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

buildAstLiteral() public method

Builds a new literal node.
Since: 0.9.6
public buildAstLiteral ( string $image ) : PDepend\Source\AST\ASTLiteral
$image string The source image for the literal node.
return PDepend\Source\AST\ASTLiteral
    public function buildAstLiteral($image)
    {
        return $this->buildAstNodeInstance('ASTLiteral', $image);
    }
PHPBuilder