PDepend\Source\Language\PHP\PHPBuilder::buildAstComment PHP 메소드

buildAstComment() 공개 메소드

Builds a new comment node instance.
부터: 0.9.8
public buildAstComment ( string $cdata ) : PDepend\Source\AST\ASTComment
$cdata string The comment text.
리턴 PDepend\Source\AST\ASTComment
    public function buildAstComment($cdata)
    {
        return $this->buildAstNodeInstance('ASTComment', $cdata);
    }
PHPBuilder