class Sass::Logger::SourceSpan

@see sass-lang.com/documentation/js-api/interfaces/SourceSpan<br><br>A span of text within a source file.

def initialize(start, end_, text, url, context)

def initialize(start, end_, text, url, context)
  @start = start
  @end = end_
  @text = text
  @url = url == '' ? nil : url
  @context = context == '' ? nil : context
end