Class: Sass::Selector::Simple

Inherits:
Object
  • Object
show all
Defined in:
lib/sass/selector/simple.rb

Overview

The abstract superclass for simple selectors (that is, those that don't compose multiple selectors).

Direct Known Subclasses

Attribute, Class, Element, Id, Parent, Placeholder, Pseudo, Universal

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#filenameString?

The name of the file in which this selector was declared, or nil if it was not declared in a file (e.g. on stdin).

Returns:

  • (String, nil)


15
16
17
# File 'lib/sass/selector/simple.rb', line 15

def filename
  @filename
end

#lineFixnum

The line of the Sass template on which this selector was declared.

Returns:

  • (Fixnum)


9
10
11
# File 'lib/sass/selector/simple.rb', line 9

def line
  @line
end

Instance Method Details

#eql?(other) ⇒ Boolean Also known as: ==

Checks equality between this and another object.

By default, this is based on the value of #to_a, so if that contains information irrelevant to the identity of the selector, this should be overridden.

Parameters:

  • other (Object)

    The object to test equality against

Returns:

  • (Boolean)

    Whether or not this is equal to other



50
51
52
# File 'lib/sass/selector/simple.rb', line 50

def eql?(other)
  other.class == self.class && other.hash == hash && other.equality_key == equality_key
end

#equality_keyString (protected)

Returns the key used for testing whether selectors are equal.

This is a cached version of #to_s.

Returns:

  • (String)


92
93
94
# File 'lib/sass/selector/simple.rb', line 92

def equality_key
  @equality_key ||= to_s
end

#hashFixnum

Returns a hash code for this selector object.

By default, this is based on the value of #to_a, so if that contains information irrelevant to the identity of the selector, this should be overridden.

Returns:

  • (Fixnum)


38
39
40
# File 'lib/sass/selector/simple.rb', line 38

def hash
  @_hash ||= equality_key.hash
end

#inspectString

Returns:

  • (String)

See Also:



20
21
22
# File 'lib/sass/selector/simple.rb', line 20

def inspect
  to_s
end

#to_sString

Returns the selector string.

Returns:

  • (String)


27
28
29
# File 'lib/sass/selector/simple.rb', line 27

def to_s
  Sass::Util.abstract(self)
end

#unify(sels) ⇒ Array<Simple>?

Unifies this selector with a Sass::Selector::SimpleSequence's members array, returning another SimpleSequence members array that matches both this selector and the input selector.

By default, this just appends this selector to the end of the array (or returns the original array if this selector already exists in it).

Parameters:

Returns:

Raises:

  • (Sass::SyntaxError)

    If this selector cannot be unified. This will only ever occur when a dynamic selector, such as Parent or Interpolation, is used in unification. Since these selectors should be resolved by the time extension and unification happen, this exception will only ever be raised as a result of programmer error



72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/sass/selector/simple.rb', line 72

def unify(sels)
  return sels if sels.any? {|sel2| eql?(sel2)}
  sels_with_ix = Sass::Util.enum_with_index(sels)
  _, i =
    if is_a?(Pseudo)
      sels_with_ix.find {|sel, _| sel.is_a?(Pseudo) && (sels.last.type == :element)}
    else
      sels_with_ix.find {|sel, _| sel.is_a?(Pseudo)}
    end
  return sels + [self] unless i
  sels[0...i] + [self] + sels[i..-1]
end

#unify_namespaces(ns1, ns2) ⇒ Array(String or nil, Boolean) (protected)

Unifies two namespaces, returning a namespace that works for both of them if possible.

Parameters:

  • ns1 (String, nil)

    The first namespace. nil means none specified, e.g. foo. The empty string means no namespace specified, e.g. |foo. "*" means any namespace is allowed, e.g. *|foo.

  • ns2 (String, nil)

    The second namespace. See ns1.

Returns:

  • (Array(String or nil, Boolean))

    The first value is the unified namespace, or nil for no namespace. The second value is whether or not a namespace that works for both inputs could be found at all. If the second value is false, the first should be ignored.



109
110
111
112
113
114
# File 'lib/sass/selector/simple.rb', line 109

def unify_namespaces(ns1, ns2)
  return nil, false unless ns1 == ns2 || ns1.nil? || ns1 == '*' || ns2.nil? || ns2 == '*'
  return ns2, true if ns1 == '*'
  return ns1, true if ns2 == '*'
  [ns1 || ns2, true]
end