class Sass::Logger::SourceLocation

This is always associated with a {SourceSpan} which indicates which file it refers to.
A specific location within a source file.

def initialize(offset, line, column)

def initialize(offset, line, column)
  @offset = offset
  @line = line
  @column = column
end