An entry in a repository that will lazily reify its values when they are first accessed.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 24
def initialize(repository)
@repository = repository
@values = nil
end
Initialize a new entry with the given repository.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 119
def comments
leading_comments.concat(trailing_comments)
end
Fetch the leading and trailing comments of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 92
def end_character_column
fetch_value(:end_character_column)
end
Fetch the end character column of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 60
def end_character_offset
fetch_value(:end_character_offset)
end
Fetch the end character offset of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 104
def end_code_units_column
fetch_value(:end_code_units_column)
end
Fetch the end code units column of the value, for the encoding that was configured on the repository.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 72
def end_code_units_offset
fetch_value(:end_code_units_offset)
end
Fetch the end code units offset of the value, for the encoding that was configured on the repository.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 82
def end_column
fetch_value(:end_column)
end
Fetch the end byte column of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 40
def end_line
fetch_value(:end_line)
end
Fetch the end line of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 50
def end_offset
fetch_value(:end_offset)
end
Fetch the end byte offset of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 134
def fetch_value(name)
values.fetch(name) do
raise MissingValueError, "No value for #{name}, make sure the " \
"repository has been properly configured"
end
end
Fetch a value from the entry, raising an error if it is missing.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 30
def filepath
fetch_value(:filepath)
end
Fetch the filepath of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 109
def leading_comments
fetch_value(:leading_comments)
end
Fetch the leading comments of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 87
def start_character_column
fetch_value(:start_character_column)
end
Fetch the start character column of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 55
def start_character_offset
fetch_value(:start_character_offset)
end
Fetch the start character offset of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 98
def start_code_units_column
fetch_value(:start_code_units_column)
end
Fetch the start code units column of the value, for the encoding that was configured on the repository.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 66
def start_code_units_offset
fetch_value(:start_code_units_offset)
end
Fetch the start code units offset of the value, for the encoding that was configured on the repository.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 77
def start_column
fetch_value(:start_column)
end
Fetch the start byte column of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 35
def start_line
fetch_value(:start_line)
end
Fetch the start line of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 45
def start_offset
fetch_value(:start_offset)
end
Fetch the start byte offset of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 114
def trailing_comments
fetch_value(:trailing_comments)
end
Fetch the trailing comments of the value.
# File tmp/rubies/ruby-3.4.1/lib/prism/relocation.rb, line 142
def values
@values || (@repository.reify!; @values)
end
Return the values from the repository, reifying them if necessary.