class Prism::Relocation::LinesField

A field representing the start and end lines.

def fields(value)

Fetches the start and end line of a value.
def fields(value)
  { start_line: value.start_line, end_line: value.end_line }
end