Class: Solargraph::Position
- Inherits:
-
Object
- Object
- Solargraph::Position
- Includes:
- Equality
- Defined in:
- lib/solargraph/position.rb
Overview
The zero-based line and column numbers of a position in a string.
Instance Attribute Summary collapse
- #character ⇒ Integer (also: #column) readonly
- #line ⇒ Integer readonly
Class Method Summary collapse
-
.from_offset(text, offset) ⇒ Position
Get a position for the specified text and offset.
-
.line_char_to_offset(text, line, character) ⇒ Integer
Get a numeric offset for the specified text and a position identified by its line and character.
-
.normalize(object) ⇒ Position
A helper method for generating positions from arrays of integers.
-
.to_offset(text, position) ⇒ Integer
Get a numeric offset for the specified text and position.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(line, character) ⇒ Position
constructor
A new instance of Position.
- #inspect ⇒ Object
-
#to_hash ⇒ Hash
Get a hash of the position.
Methods included from Equality
Constructor Details
#initialize(line, character) ⇒ Position
Returns a new instance of Position.
19 20 21 22 |
# File 'lib/solargraph/position.rb', line 19 def initialize line, character @line = line @character = character end |
Instance Attribute Details
#character ⇒ Integer (readonly) Also known as: column
13 14 15 |
# File 'lib/solargraph/position.rb', line 13 def character @character end |
#line ⇒ Integer (readonly)
10 11 12 |
# File 'lib/solargraph/position.rb', line 10 def line @line end |
Class Method Details
.from_offset(text, offset) ⇒ Position
Get a position for the specified text and offset.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/solargraph/position.rb', line 70 def self.from_offset text, offset cursor = 0 line = 0 character = nil text.lines.each do |l| line_length = l.length char_length = l.chomp.length if cursor + char_length >= offset character = offset - cursor break end cursor += line_length line += 1 end character = 0 if character.nil? and (cursor - offset).between?(0, 1) raise InvalidOffsetError if character.nil? Position.new(line, character) end |
.line_char_to_offset(text, line, character) ⇒ Integer
Get a numeric offset for the specified text and a position identified by its line and character.
61 62 63 |
# File 'lib/solargraph/position.rb', line 61 def self.line_char_to_offset text, line, character to_offset(text, Position.new(line, character)) end |
.normalize(object) ⇒ Position
A helper method for generating positions from arrays of integers. The original parameter is returned if it is already a position.
96 97 98 99 100 |
# File 'lib/solargraph/position.rb', line 96 def self.normalize object return object if object.is_a?(Position) return Position.new(object[0], object[1]) if object.is_a?(Array) raise ArgumentError, "Unable to convert #{object.class} to Position" end |
.to_offset(text, position) ⇒ Integer
Get a numeric offset for the specified text and position.
49 50 51 52 |
# File 'lib/solargraph/position.rb', line 49 def self.to_offset text, position return 0 if text.empty? text.lines[0...position.line].sum(&:length) + position.character end |
Instance Method Details
#==(other) ⇒ Object
102 103 104 105 |
# File 'lib/solargraph/position.rb', line 102 def == other return false unless other.is_a?(Position) line == other.line and character == other.character end |
#inspect ⇒ Object
40 41 42 |
# File 'lib/solargraph/position.rb', line 40 def inspect "#<#{self.class} #{line}, #{character}>" end |
#to_hash ⇒ Hash
Get a hash of the position. This representation is suitable for use in the language server protocol.
33 34 35 36 37 38 |
# File 'lib/solargraph/position.rb', line 33 def to_hash { line: line, character: character } end |