Class: ROM::MapperCompiler Private
- Inherits:
-
Object
- Object
- ROM::MapperCompiler
- Extended by:
- Dry::Core::ClassAttributes, Initializer
- Defined in:
- 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.
Instance Attribute Summary collapse
- #mapper_options ⇒ Object readonly private
- #struct_compiler ⇒ Object readonly private
Instance Method Summary collapse
- #call(ast) ⇒ Object (also: #[]) private
-
#initialize(*args) ⇒ MapperCompiler
constructor
private
A new instance of MapperCompiler.
Constructor Details
#initialize(*args) ⇒ MapperCompiler
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 'lib/rom/mapper_compiler.rb', line 26 def initialize(*args) super @struct_compiler = StructCompiler.new(cache: cache) @cache = cache.namespaced(:mappers) @mapper_options = self.class. end |
Instance Attribute Details
#mapper_options ⇒ Object (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 'lib/rom/mapper_compiler.rb', line 24 def @mapper_options end |
#struct_compiler ⇒ Object (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 '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.
33 34 35 |
# File 'lib/rom/mapper_compiler.rb', line 33 def call(ast) cache.fetch_or_store(ast.hash) { Mapper.build(Header.coerce(*visit(ast))) } end |