class Prism::Relocation::ColumnsField

A field representing the start and end byte columns.

Public Instance Methods

fields(value) click to toggle source

Fetches the start and end byte column of a value.

# File prism/relocation.rb, line 263
def fields(value)
  { start_column: value.start_column, end_column: value.end_column }
end