class Sass::Logger::SourceSpan

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