123456789_123456789_123456789_123456789_123456789_

Class: RBS::Buffer

Relationships & Source Files
Inherits: Object
Defined in: lib/rbs/buffer.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name:, content:) ⇒ Buffer

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 8

def initialize(name:, content:)
  @name = name
  @content = content

  @lines = content.lines

  @ranges = []
  offset = 0
  lines.each do |line|
    size = line.size
    range = offset...(offset+size)
    ranges << range
    offset += size
  end
end

Instance Attribute Details

#content (readonly)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 4

attr_reader :content

#lines (readonly)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 5

attr_reader :lines

#name (readonly)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 3

attr_reader :name

#ranges (readonly)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 6

attr_reader :ranges

Instance Method Details

#last_position

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 46

def last_position
  content.size
end

#loc_to_pos(loc)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 36

def loc_to_pos(loc)
  line, column = loc

  if range = ranges[line - 1]
    range.begin + column
  else
    last_position
  end
end

#pos_to_loc(pos)

[ GitHub ]

  
# File 'lib/rbs/buffer.rb', line 24

def pos_to_loc(pos)
  index = ranges.bsearch_index do |range|
    pos < range.end ? true : false
  end

  if index
    [index + 1, pos - ranges[index].begin]
  else
    [ranges.size + 1, 0]
  end
end