Class: Riml::DictionaryNode
- Inherits:
-
LiteralNode
- Object
- Struct
- LiteralNode
- Riml::DictionaryNode
- Defined in:
- lib/riml/nodes.rb
Constant Summary
Constants included from Visitable
Instance Attribute Summary
Attributes inherited from LiteralNode
Attributes included from Visitable
#compiled_output, #force_newline, #parent_node, #parser_info, #scope
Instance Method Summary collapse
- #children ⇒ Object
- #force_newline_if_child_call_node? ⇒ Boolean
-
#initialize(value) ⇒ DictionaryNode
constructor
A new instance of DictionaryNode.
Methods included from Visitable
Methods included from Walkable
#child_after, #child_previous_to, #each, #index_by_children, #index_by_member, #insert_after, #insert_before, #next, #previous, #remove, #replace_with
Constructor Details
#initialize(value) ⇒ DictionaryNode
Returns a new instance of DictionaryNode.
158 159 160 |
# File 'lib/riml/nodes.rb', line 158 def initialize(value) super(value.to_a) end |
Instance Method Details
#children ⇒ Object
166 167 168 169 170 |
# File 'lib/riml/nodes.rb', line 166 def children ret = [] value.compact.each { |(k, v)| ret << k << v } ret end |
#force_newline_if_child_call_node? ⇒ Boolean
162 163 164 |
# File 'lib/riml/nodes.rb', line 162 def force_newline_if_child_call_node? false end |