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

buildAstCompoundVariable() 공개 메소드

Builds a new compound variable node.
부터: 0.9.6
public buildAstCompoundVariable ( string $image ) : PDepend\Source\AST\ASTCompoundVariable
$image string The source image for the compound variable.
리턴 PDepend\Source\AST\ASTCompoundVariable
    public function buildAstCompoundVariable($image)
    {
        return $this->buildAstNodeInstance('ASTCompoundVariable', $image);
    }
PHPBuilder