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

parseShiftRightExpression() protected method

This method parses a shift right expression node.
Since: 1.0.1
protected parseShiftRightExpression ( ) : PDepend\Source\AST\ASTShiftRightExpression
return PDepend\Source\AST\ASTShiftRightExpression
    protected function parseShiftRightExpression()
    {
        $token = $this->consumeToken(Tokens::T_SR);
        $expr = $this->builder->buildAstShiftRightExpression();
        $expr->configureLinesAndColumns($token->startLine, $token->endLine, $token->startColumn, $token->endColumn);
        return $expr;
    }
AbstractPHPParser