PDepend\Source\Language\PHP\PHPBuilder::buildAstLiteral PHP Метод

buildAstLiteral() публичный Метод

Builds a new literal node.
С версии: 0.9.6
public buildAstLiteral ( string $image ) : PDepend\Source\AST\ASTLiteral
$image string The source image for the literal node.
Результат PDepend\Source\AST\ASTLiteral
    public function buildAstLiteral($image)
    {
        return $this->buildAstNodeInstance('ASTLiteral', $image);
    }
PHPBuilder