class Sass::Selector::Placeholder

Otherwise, this acts just like a class selector.
Rulesets using this selector will not be printed, but can be extended.
This exists to be replaced via ‘@extend`.
A placeholder selector (e.g. `%foo`).

def initialize(name)

Parameters:
  • name (Array) -- The placeholder name
def initialize(name)
  @name = name
end

def specificity

Other tags:
    See: AbstractSequence#specificity -
def specificity
  SPECIFICITY_BASE
end

def to_a

Other tags:
    See: Selector#to_a -
def to_a
  ["%", *@name]
end