class Prism::ParenthesesNode

def copy(**params)

def copy: (**params) -> ParenthesesNode
def copy(**params)
  ParenthesesNode.new(
    params.fetch(:body) { body },
    params.fetch(:opening_loc) { opening_loc },
    params.fetch(:closing_loc) { closing_loc },
    params.fetch(:location) { location },
  )
end