Class: RSpec::Support::Source::Location

Inherits:
Struct
  • Object
show all
Includes:
Comparable
Defined in:
lib/rspec/support/source/location.rb

Overview

Represents a source location of node or token.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#columnObject

Returns the value of attribute column

Returns:

  • (Object)

    the current value of column



6
7
8
# File 'lib/rspec/support/source/location.rb', line 6

def column
  @column
end

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



6
7
8
# File 'lib/rspec/support/source/location.rb', line 6

def line
  @line
end

Class Method Details

.location?(array) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'lib/rspec/support/source/location.rb', line 9

def self.location?(array)
  array.is_a?(Array) && array.size == 2 && array.all? { |e| e.is_a?(Integer) }
end

Instance Method Details

#<=>(other) ⇒ Object



13
14
15
16
17
# File 'lib/rspec/support/source/location.rb', line 13

def <=>(other)
  line_comparison = (line <=> other.line)
  return line_comparison unless line_comparison == 0
  column <=> other.column
end