Represents the source of a repository that will be reparsed.
Attributes
Read
The value that will need to be reparsed.
Class Methods
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/prism/relocation.rb, line 232
def initialize(value)
@value = value
end
Initialize the source with the given value.
Instance Methods
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/prism/relocation.rb, line 246
def code_units_cache(encoding)
result.code_units_cache(encoding)
end
Create a code units cache for the given encoding.
#
dev
View on GitHub
# File tmp/rubies/ruby-master/lib/prism/relocation.rb, line 239
def result
raise NotImplementedError, "Subclasses must implement #result"
end
Reparse the value and return the parse result.