PDepend\Source\Language\PHP\AbstractPHPParser::parsePropertyPostfix PHP Method

parsePropertyPostfix() private method

Parses/Creates a property postfix node instance.
Since: 0.10.2
private parsePropertyPostfix ( PDepend\Source\AST\ASTNode $node ) : PDepend\Source\AST\ASTPropertyPostfix
$node PDepend\Source\AST\ASTNode Node that represents the image of the property postfix node.
return PDepend\Source\AST\ASTPropertyPostfix
    private function parsePropertyPostfix(ASTNode $node)
    {
        $image = $this->extractPostfixImage($node);
        $postfix = $this->builder->buildAstPropertyPostfix($image);
        $postfix->addChild($node);
        $postfix->configureLinesAndColumns($node->getStartLine(), $node->getEndLine(), $node->getStartColumn(), $node->getEndColumn());
        return $postfix;
    }
AbstractPHPParser