class Sass::Logger::SourceLocation

@see sass-lang.com/documentation/js-api/interfaces/SourceLocation<br><br>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