class AST::Node

def eql?(other)

Returns:
  • (Boolean) -

Parameters:
  • other (Object) --
def eql?(other)
  self.class.eql?(other.class)   &&
  @type.eql?(other.type)         &&
  @children.eql?(other.children)
end