PDepend\Source\Language\PHP\PHPBuilder::buildAstBreakStatement PHP Méthode

buildAstBreakStatement() public méthode

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