Class: Hiptest::Nodes::Parenthesis

Inherits:
Node
  • Object
show all
Defined in:
lib/hiptest-publisher/nodes.rb

Instance Attribute Summary

Attributes inherited from Node

#children, #parent

Instance Method Summary collapse

Methods inherited from Node

#direct_children, #find_sub_nodes, #render

Constructor Details

#initialize(content) ⇒ Parenthesis

Returns a new instance of Parenthesis.



130
131
132
133
# File 'lib/hiptest-publisher/nodes.rb', line 130

def initialize(content)
  super()
  @children = {:content => content}
end