class Sass::Source::Map::Mapping

@return [Sass::Source::Range] The source range in the output document.
@!attribute output
@return [Sass::Source::Range] The source range in the input document.
@!attribute input
compiled to ‘output`.
A mapping from one source range to another. Indicates that `input` was

def inspect

Returns:
  • (String) - A string representation of the mapping.
def inspect
  "#{input.inspect} => #{output.inspect}"
end