# File lib/tapkit/control/qualifier.rb, line 466
                def ==( other )
                        bool = false
                        if KeyComparisonQualifier === other then
                                if (@left == other.left) and (@symbol == other.symbol) and \
                                        (@right == other.right) then
                                        bool = true
                                end
                        end

                        bool
                end