class Prism::Relocation::ColumnsField
A field representing the start and end byte columns.
Public Instance Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.7.0/lib/prism/relocation.rb, line 264 def fields(value) { start_column: value.start_column, end_column: value.end_column } end
Fetches the start and end byte column of a value.