# File lib/cgikit.rb, line 5066
        def ==( other )
                bool = false
                if CKKeyComparisonQualifier === other then
                        if (@left == other.left) and (@symbol == other.symbol) and \
                                (@right == other.right) then
                                bool = true
                        end
                end

                bool
        end