class Sass::Value::String

Sass’s string type.

def ==(other)

def ==(other)
  other.is_a?(Sass::Value::String) && other.text == text
end

def assert_string(_name = nil)

def assert_string(_name = nil)
  self
end

def hash

def hash
  @hash ||= text.hash
end

def initialize(text = '', quoted: true) # rubocop:disable Lint/MissingSuper

rubocop:disable Lint/MissingSuper
def initialize(text = '', quoted: true) # rubocop:disable Lint/MissingSuper
  @text = text.freeze
  @quoted = quoted
end

def quoted?

def quoted?
  @quoted
end

def sass_index_to_string_index(sass_index, name = nil)

def sass_index_to_string_index(sass_index, name = nil)
  index = sass_index.assert_number(name).assert_integer(name)
  raise error('String index may not be 0', name) if index.zero?
  if index.abs > text.length
    raise error("Invalid index #{sass_index} for a string with #{text.length} characters",
                name)
  end
  index.negative? ? text.length + index : index - 1
end