PDepend\Source\Language\PHP\AbstractPHPParser::parseFunctionPostfix PHP Метод

parseFunctionPostfix() приватный Метод

This method will delegate the call to another method that returns a member primary prefix object when the function postfix expression is followed by an object operator.
С версии: 0.9.6
private parseFunctionPostfix ( PDepend\Source\AST\ASTNode $node ) : PDepend\Source\AST\ASTNode
$node PDepend\Source\AST\ASTNode This node represents the function identifier. An identifier can be a static string, a variable, a compound variable or any other valid php function identifier.
Результат PDepend\Source\AST\ASTNode
    private function parseFunctionPostfix(ASTNode $node)
    {
        $image = $this->extractPostfixImage($node);
        $function = $this->builder->buildAstFunctionPostfix($image);
        $function->addChild($node);
        $function->addChild($this->parseArguments());
        return $this->parseOptionalMemberPrimaryPrefix($this->parseOptionalIndexExpression($function));
    }
AbstractPHPParser