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

buildAstGotoStatement() public method

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