class SyntaxTree::Else

def copy(keyword: nil, statements: nil, location: nil)

def copy(keyword: nil, statements: nil, location: nil)
  node =
    Else.new(
      keyword: keyword || self.keyword,
      statements: statements || self.statements,
      location: location || self.location
    )
  node.comments.concat(comments.map(&:copy))
  node
end