class Prism::Relocation::Source
Represents the source of a repository that will be reparsed.
Attributes
value
[R]
untyped
The value that will need to be reparsed.
Public Class Methods
(untyped value) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.9.0/lib/prism/relocation.rb, line 154 def initialize(value) @value = value end
Initialize the source with the given value.
Public Instance Methods
(Encoding encoding) → _CodeUnitsCache
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.9.0/lib/prism/relocation.rb, line 164 def code_units_cache(encoding) result.code_units_cache(encoding) end
Create a code units cache for the given encoding.
() → ParseResult
Source
# File vendor/bundle/ruby/4.0.0/gems/prism-1.9.0/lib/prism/relocation.rb, line 159 def result raise NotImplementedError, "Subclasses must implement #result" end
Reparse the value and return the parse result.