class Prism::Relocation::LinesField
A field representing the start and end lines.
Public Instance Methods
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.7.0/lib/prism/relocation.rb, line 204 def fields(value) { start_line: value.start_line, end_line: value.end_line } end
Fetches the start and end line of a value.