class Sass::Script::Variable

def inspect(opts = {})

Returns:
  • (String) - A string representation of the variable
def inspect(opts = {})
  return "!important" if name == "important"
  "$#{dasherize(name, opts)}"
end