class Prism::Relocation::Source

Represents the source of a repository that will be reparsed.

Attributes

The value that will need to be reparsed.

Public Class Methods

Initialize the source with the given value.

# File lib/prism/relocation.rb, line 153
def initialize(value)
  @value = value
end

Public Instance Methods

Create a code units cache for the given encoding.

# File lib/prism/relocation.rb, line 163
def code_units_cache(encoding)
  result.code_units_cache(encoding)
end

Reparse the value and return the parse result.

# File lib/prism/relocation.rb, line 158
def result
  raise NotImplementedError, "Subclasses must implement #result"
end