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

parseLogicalXorExpression() protected method

This method parses a logical xor-expression.
Since: 0.9.8
protected parseLogicalXorExpression ( ) : PDepend\Source\AST\ASTLogicalXorExpression
return PDepend\Source\AST\ASTLogicalXorExpression
    protected function parseLogicalXorExpression()
    {
        $token = $this->consumeToken(Tokens::T_LOGICAL_XOR);
        $expr = $this->builder->buildAstLogicalXorExpression();
        $expr->configureLinesAndColumns($token->startLine, $token->endLine, $token->startColumn, $token->endColumn);
        return $expr;
    }
AbstractPHPParser