class Sass::Selector::Interpolation

Selector interpolation (‘#{}` in Sass).

def initialize(script)

Parameters:
  • script (Sass::Script::Node) -- The script to run
def initialize(script)
  @script = script
end

def to_a

Other tags:
    See: Selector#to_a -
def to_a
  [@script]
end

def unify(sels)

Other tags:
    See: Selector#unify -

Raises:
  • (Sass::SyntaxError) - Interpolation selectors should be resolved before unification
def unify(sels)
  raise Sass::SyntaxError.new("[BUG] Cannot unify interpolation selectors.")
end