class SyntaxTree::Args

def copy(parts: nil, location: nil)

def copy(parts: nil, location: nil)
  node =
    Args.new(
      parts: parts || self.parts,
      location: location || self.location
    )
  node.comments.concat(comments.map(&:copy))
  node
end