class Sass::Script::Literal

def options

Raises:
  • (Sass::SyntaxError) - if the options hash hasn't been set.

Returns:
  • ({Symbol => Object}) -
def options
  opts = super
  return opts if opts
  raise Sass::SyntaxError.new(<<MSG)
#options attribute is not set on this #{self.class}.
is error is probably occurring because #to_s was called
 this literal within a custom Sass function without first
tting the #option attribute.
end