PDepend\Source\Language\PHP\PHPBuilder::buildAstInstanceOfExpression PHP Метод

buildAstInstanceOfExpression() публичный Метод

Builds a new instanceof expression node.
С версии: 0.9.6
public buildAstInstanceOfExpression ( string $image ) : PDepend\Source\AST\ASTInstanceOfExpression
$image string The source image of this expression.
Результат PDepend\Source\AST\ASTInstanceOfExpression
    public function buildAstInstanceOfExpression($image)
    {
        return $this->buildAstNodeInstance('ASTInstanceOfExpression', $image);
    }
PHPBuilder