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

buildAstString() public method

$string = "Manuel $Pichler <{$email}>"; \PDepend\Source\AST\ASTString |-- ASTLiteral - "Manuel ") |-- ASTVariable - $Pichler |-- ASTLiteral - " <" |-- ASTCompoundExpression - {...} | |-- ASTVariable - $email |-- ASTLiteral - ">"
Since: 0.9.10
public buildAstString ( ) : PDepend\Source\AST\ASTString
return PDepend\Source\AST\ASTString
    public function buildAstString()
    {
        return $this->buildAstNodeInstance('ASTString');
    }
PHPBuilder