A placeholder selector (e.g. `%foo`). This exists to be replaced via `@extend`. Rulesets using this selector will not be printed, but can be extended. Otherwise, this acts just like a class selector.
The placeholder name.
@return [String]
@param name [String] The placeholder name
# File lib/sass/selector.rb, line 121 def initialize(name) @name = name end
@see Sass::Selector::AbstractSequence#specificity
# File lib/sass/selector.rb, line 131 def specificity SPECIFICITY_BASE end
@see Selector#to_s
# File lib/sass/selector.rb, line 126 def to_s "%" + @name end