Class: AbstractMapper::Node
- Inherits:
-
Object
- Object
- AbstractMapper::Node
- Defined in:
- lib/abstract_mapper/node.rb
Overview
An immutable node of the abstract syntax tree (AST), that describes either some “end-up” transformation, or a level of nested input data.
Every node is expected to accept attributes and (possibly) block, and implement ‘#transproc` that implements the `#call` method to transform input data to the output.
Nodes describe only the structure of AST, they know neither how to build the tree with DSL (see [AbstractMapper::Builder]), nor how to optimize it later (see [AbstractMapper::Optimizer]).
Direct Known Subclasses
Instance Attribute Summary collapse
-
#attributes ⇒ Array
readonly
The list of node-specific attributes.
-
#block ⇒ Proc
readonly
The block given to initializer.
Instance Method Summary collapse
-
#initialize(*attributes, &block) ⇒ Node
constructor
A new instance of Node.
-
#inspect ⇒ String
Returns a human-readable string representating the node.
-
#to_s ⇒ String
Converts the node into string with its name and attributes.
-
#transproc ⇒ Object
abstract
The transformation function for the branch.
Constructor Details
#initialize(*attributes, &block) ⇒ Node
Returns a new instance of Node.
33 34 35 36 37 |
# File 'lib/abstract_mapper/node.rb', line 33 def initialize(*attributes, &block) @attributes = attributes.freeze @block = block freeze end |
Instance Attribute Details
#attributes ⇒ Array (readonly)
Returns The list of node-specific attributes.
24 25 26 |
# File 'lib/abstract_mapper/node.rb', line 24 def attributes @attributes end |
#block ⇒ Proc (readonly)
Returns The block given to initializer.
30 31 32 |
# File 'lib/abstract_mapper/node.rb', line 30 def block @block end |
Instance Method Details
#inspect ⇒ String
Returns a human-readable string representating the node
52 53 54 |
# File 'lib/abstract_mapper/node.rb', line 52 def inspect "<#{self}>" end |
#to_s ⇒ String
Converts the node into string with its name and attributes
60 61 62 |
# File 'lib/abstract_mapper/node.rb', line 60 def to_s "#{__name__}#{__attributes__}" end |
#transproc ⇒ Object
The transformation function for the branch
44 45 46 |
# File 'lib/abstract_mapper/node.rb', line 44 def transproc Transproc::Function.new(-> v { v }, {}) end |