Class: Prism::Relocation::CharacterColumnsField
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/prism/relocation.rb |
Overview
A field representing the start and end character columns.
Instance Method Summary
-
#fields(value)
Fetches the start and end character column of a value.
Instance Method Details
#fields(value)
Fetches the start and end character column of a value.
# File 'lib/prism/relocation.rb', line 271
def fields(value) { start_character_column: value.start_character_column, end_character_column: value.end_character_column } end