PDepend\Source\Language\PHP\PHPBuilder::buildAstIfStatement PHP 메소드

buildAstIfStatement() 공개 메소드

Builds a new if statement node.
부터: 0.9.8
public buildAstIfStatement ( string $image ) : PDepend\Source\AST\ASTIfStatement
$image string The source image of this statement.
리턴 PDepend\Source\AST\ASTIfStatement
    public function buildAstIfStatement($image)
    {
        return $this->buildAstNodeInstance('ASTIfStatement', $image);
    }
PHPBuilder