lib/sass/selector/abstract_sequence.rb in sass-3.3.0.alpha.256 vs lib/sass/selector/abstract_sequence.rb in sass-3.3.0.alpha.353

- old
+ new

@@ -53,10 +53,10 @@ # which handles checking class equality and hash equality. # # @param other [Object] The object to test equality against # @return [Boolean] Whether or not this is equal to `other` def eql?(other) - other.class == self.class && other.hash == self.hash && _eql?(other) + other.class == self.class && other.hash == hash && _eql?(other) end alias_method :==, :eql? # Whether or not this selector sequence contains a placeholder selector. # Checks recursively.