class SyntaxTree::UntilNode

def ===(other)

def ===(other)
  other.is_a?(UntilNode) && predicate === other.predicate &&
    statements === other.statements
end