class Sass::Script::Value::List

def eq(other)

Other tags:
    See: Value#eq -
def eq(other)
  Sass::Script::Value::Bool.new(
    other.is_a?(List) && value == other.value &&
    separator == other.separator && bracketed == other.bracketed)
end