class RSpec::Mocks::ArgumentListMatcher

def resolve_expected_args_based_on(actual_args)

Other tags:
    Private: -
def resolve_expected_args_based_on(actual_args)
  return [] if [ArgumentMatchers::NoArgsMatcher::INSTANCE] == expected_args
  any_args_index = expected_args.index { |a| ArgumentMatchers::AnyArgsMatcher::INSTANCE == a }
  return expected_args unless any_args_index
  replace_any_args_with_splat_of_anything(any_args_index, actual_args.count)
end