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

buildAstLabelStatement() public method

Builds a new label-statement instance.
Since: 0.9.12
public buildAstLabelStatement ( string $image ) : PDepend\Source\AST\ASTLabelStatement
$image string The source code image for this node.
return PDepend\Source\AST\ASTLabelStatement
    public function buildAstLabelStatement($image)
    {
        return $this->buildAstNodeInstance('ASTLabelStatement', $image);
    }
PHPBuilder