class Prism::Relocation::CharacterOffsetsField
A field representing the start and end character offsets.
Public Instance Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.7.0/lib/prism/relocation.rb, line 220 def fields(value) { start_character_offset: value.start_character_offset, end_character_offset: value.end_character_offset } end
Fetches the start and end character offset of a value.