Class: ROM::MapperCompiler Private

Inherits:
Object
  • Object
show all
Extended by:
Dry::Core::ClassAttributes, Initializer
Defined in:
core/lib/rom/mapper_compiler.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Direct Known Subclasses

ROM::Memory::MapperCompiler

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMapperCompiler

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of MapperCompiler.



26
27
28
29
30
31
# File 'core/lib/rom/mapper_compiler.rb', line 26

def initialize(*)
  super
  @struct_compiler = StructCompiler.new(cache: cache)
  @cache = cache.namespaced(:mappers)
  @mapper_options = self.class.mapper_options
end

Instance Attribute Details

#mapper_optionsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



24
25
26
# File 'core/lib/rom/mapper_compiler.rb', line 24

def mapper_options
  @mapper_options
end

#struct_compilerObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



22
23
24
# File 'core/lib/rom/mapper_compiler.rb', line 22

def struct_compiler
  @struct_compiler
end

Instance Method Details

#call(ast) ⇒ Object Also known as: []

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



34
35
36
# File 'core/lib/rom/mapper_compiler.rb', line 34

def call(ast)
  cache.fetch_or_store(ast.hash) { Mapper.build(Header.coerce(*visit(ast))) }
end