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

buildAstDoWhileStatement() public method

Builds a new do/while-statement node.
Since: 0.9.12
public buildAstDoWhileStatement ( string $image ) : PDepend\Source\AST\ASTDoWhileStatement
$image string The source image of this statement.
return PDepend\Source\AST\ASTDoWhileStatement
    public function buildAstDoWhileStatement($image)
    {
        return $this->buildAstNodeInstance('ASTDoWhileStatement', $image);
    }
PHPBuilder