class Prism::Source

def line(byte_offset)

byte offset.
Binary search through the offsets to find the line number for the given
def line(byte_offset)
  start_line + find_line(byte_offset)
end