class Hiptest::Nodes::IfThen

Public Class Methods

new(condition, then_, else_ = []) click to toggle source
Calls superclass method
# File lib/hiptest-publisher/nodes.rb, line 239
def initialize(condition, then_, else_ = [])
  super()
  @children = {condition: condition, then: then_, else: else_}
end