class RuboCop::Cop::Style::Sample

def sample_arg(method, method_args)

def sample_arg(method, method_args)
  case method
  when :first, :last
    extract_source(method_args)
  when :[], :slice
    sample_size(method_args)
  end
end