class Prism::Source

def column(byte_offset)

Return the column number for the given byte offset.
def column(byte_offset)
  byte_offset - line_start(byte_offset)
end