class Steep::AST::MethodType::Params::Base

def initialize(location:)

def initialize(location:)
  @location = location
end

def update_location(location)

def update_location(location)
  dup.instance_eval do
    @location = location
    self
  end
end