PHPCfg\Parser::parseExpr_BitwiseNot PHP Method

parseExpr_BitwiseNot() protected method

protected parseExpr_BitwiseNot ( PhpParser\Node\Expr\BitwiseNot $expr )
$expr PhpParser\Node\Expr\BitwiseNot
    protected function parseExpr_BitwiseNot(Expr\BitwiseNot $expr)
    {
        return new Op\Expr\BitwiseNot($this->readVariable($this->parseExprNode($expr->expr)), $this->mapAttributes($expr));
    }
Parser