if self.current_token.type == TokenType.BITWISE_LS:
                self.advance()
                result = nodes.BWLeftShiftNode(result, self.expr())
            elif self.current_token.type == TokenType.BITWISE_RS:
                self.advance()