class SassC::Script::Value::List

def eq(other)

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