Method: Stupidedi::Values::LoopVal#==

Defined in:
lib/stupidedi/values/loop_val.rb

#==(other) ⇒ Boolean

Returns:

  • (Boolean)


66
67
68
69
70
# File 'lib/stupidedi/values/loop_val.rb', line 66

def ==(other)
  eql?(other) or
   (other.definition == @definition and
    other.children   == @children)
end