class SourceMap::Offset

def to_s

Returns a String.

Public: Get a simple string representation of the offset
def to_s
  if column == 0
    "#{line}"
  else
    "#{line}:#{column}"
  end
end