Class: Sass::Selector::Id

Inherits:
Simple
  • Object
show all
Defined in:
/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb

Overview

An id selector (e.g. #foo).

Instance Attribute Summary (collapse)

Attributes inherited from Simple

#filename, #line

Instance Method Summary (collapse)

Methods inherited from Simple

#eql?, #equality_key, #hash, #inspect, #unify_namespaces

Constructor Details

- (Id) initialize(name)

Returns a new instance of Id

Parameters:

  • name (String)

    The id name



86
87
88
# File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb', line 86

def initialize(name)
  @name = name
end

Instance Attribute Details

- (String) name (readonly)

The id name.

Returns:

  • (String)


83
84
85
# File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb', line 83

def name
  @name
end

Instance Method Details

- specificity



105
106
107
# File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb', line 105

def specificity
  SPECIFICITY_BASE**2
end

- to_s(opts = {})

See Also:

  • Selector#to_s


91
92
93
# File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb', line 91

def to_s(opts = {})
  "#" + @name
end

- unify(sels)

Returns nil if sels contains an Sass::Selector::Id selector with a different name than this one.

See Also:

  • Selector#unify


99
100
101
102
# File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/selector.rb', line 99

def unify(sels)
  return if sels.any? {|sel2| sel2.is_a?(Id) && name != sel2.name}
  super
end