class SyntaxTree::Statements

def copy(body: nil, location: nil)

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