Class: Sass::Logger::SourceLocation

Inherits:
Object
  • Object
show all
Defined in:
lib/sass/logger/source_location.rb

Overview

A specific location within a source file.

This is always associated with a SourceSpan which indicates which file it refers to.

Instance Attribute Summary collapse

Instance Attribute Details

#columnInteger (readonly)

Returns:

  • (Integer)


12
13
14
# File 'lib/sass/logger/source_location.rb', line 12

def column
  @column
end

#lineInteger (readonly)

Returns:

  • (Integer)


12
13
14
# File 'lib/sass/logger/source_location.rb', line 12

def line
  @line
end

#offsetInteger (readonly)

Returns:

  • (Integer)


12
13
14
# File 'lib/sass/logger/source_location.rb', line 12

def offset
  @offset
end