Class: Sass::Selector::Id
Overview
An id selector (e.g. #foo
).
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The id name.
Attributes inherited from Simple
Instance Method Summary collapse
-
#initialize(name) ⇒ Id
constructor
A new instance of Id.
- #specificity
- #to_s(opts = {})
-
#unify(sels)
Returns
nil
ifsels
contains an Id selector with a different name than this one. - #unique? ⇒ Boolean
Methods inherited from Simple
#eql?, #equality_key, #hash, #inspect, #unify_namespaces
Constructor Details
#initialize(name) ⇒ Id
Returns a new instance of Id.
86 87 88 |
# File 'lib/sass/selector.rb', line 86
def initialize(name)
@name = name
end
|
Instance Attribute Details
#name ⇒ String (readonly)
The id name.
83 84 85 |
# File 'lib/sass/selector.rb', line 83
def name
@name
end
|
Instance Method Details
#specificity
109 110 111 |
# File 'lib/sass/selector.rb', line 109
def specificity
SPECIFICITY_BASE**2
end
|
#to_s(opts = {})
95 96 97 |
# File 'lib/sass/selector.rb', line 95
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.
103 104 105 106 |
# File 'lib/sass/selector.rb', line 103
def unify(sels)
return if sels.any? {|sel2| sel2.is_a?(Id) && name != sel2.name}
super
end
|
#unique? ⇒ Boolean
90 91 92 |
# File 'lib/sass/selector.rb', line 90
def unique?
true
end
|