class Sass::Selector::AbstractSequence
that returns an array of object that respond to ‘#line=` and `#filename=`.
All subclasses should implement a `members` method
The abstract parent class of the various selector sequence classes.
def eql?(other)
-
(Boolean)
- Whether or not this is equal to `other`
Parameters:
-
other
(Object
) -- The object to test equality against
def eql?(other) other.class == self.class && other.hash == self.hash && _eql?(other) end
def filename=(filename)
-
(String, nil)
-
Parameters:
-
filename
(String, nil
) --
def filename=(filename) members.each {|m| m.filename = filename} @filename = filename end
def hash
-
(Fixnum)
-
def hash @_hash ||= _hash end
def line=(line)
-
(Fixnum)
-
Parameters:
-
line
(Fixnum
) --
def line=(line) members.each {|m| m.line = line} @line = line end