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

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

Builds a new label-statement instance.
С версии: 0.9.12
public buildAstLabelStatement ( string $image ) : PDepend\Source\AST\ASTLabelStatement
$image string The source code image for this node.
Результат PDepend\Source\AST\ASTLabelStatement
    public function buildAstLabelStatement($image)
    {
        return $this->buildAstNodeInstance('ASTLabelStatement', $image);
    }
PHPBuilder