1. Prism::
  2. Relocation::
  3. CodeUnitOffsetsField

class Prism::Relocation::CodeUnitOffsetsField

A field representing the start and end code unit offsets.

Attributes

encoding[R]

The associated encoding for the code units.

repository[R]

A pointer to the repository object that is used for lazily creating a code units cache.

Public Class Methods

Source
# File lib/prism/relocation.rb, line 238definitialize(repository,encoding)@repository =repository@encoding =encoding@cache =nilend

Initialize a new field with the associated repository and encoding.

Public Instance Methods

Source
# File lib/prism/relocation.rb, line 246deffields(value)  {start_code_units_offset:value.cached_start_code_units_offset(cache),end_code_units_offset:value.cached_end_code_units_offset(cache)  }end

Fetches the start and end code units offset of a value for a particular encoding.

Private Instance Methods

Source
# File lib/prism/relocation.rb, line 256defcache@cache||=repository.code_units_cache(encoding)end

Lazily create a code units cache for the associated encoding.