123456789_123456789_123456789_123456789_123456789_

Class: Prism::Relocation::ColumnsField

Relationships & Source Files
Inherits: Object
Defined in: lib/prism/relocation.rb

Overview

A field representing the start and end byte columns.

Instance Method Summary

Instance Method Details

#fields(value)

Fetches the start and end byte column of a value.

[ GitHub ]

  
# File 'lib/prism/relocation.rb', line 263

def fields(value)
  { start_column: value.start_column, end_column: value.end_column }
end