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

buildAstWhileStatement() public method

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