Skip to content

Commit d4ea0b3

Browse files
committed
Auto merge of rust-lang#78825 - Nicholas-Baron:unwrap_or_corrected, r=lcnr
`unwrap_or` lint corrected rust-lang#78814 (comment) This pull request fixes the lint from clippy where `unwrap_or` could be better done as a `unwrap_or_else` or a `unwrap_or_default`.
2 parents 38030ff + 261ca04 commit d4ea0b3

File tree

14 files changed

+31
-30
lines changed

14 files changed

+31
-30
lines changed

compiler/rustc_ast/src/attr/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ impl NestedMetaItem {
6666
self.meta_item().and_then(|meta_item| meta_item.ident())
6767
}
6868
pub fn name_or_empty(&self) -> Symbol {
69-
self.ident().unwrap_or(Ident::invalid()).name
69+
self.ident().unwrap_or_else(Ident::invalid).name
7070
}
7171

7272
/// Gets the string value if `self` is a `MetaItem` and the `MetaItem` is a
@@ -139,7 +139,7 @@ impl Attribute {
139139
}
140140
}
141141
pub fn name_or_empty(&self) -> Symbol {
142-
self.ident().unwrap_or(Ident::invalid()).name
142+
self.ident().unwrap_or_else(Ident::invalid).name
143143
}
144144

145145
pub fn value_str(&self) -> Option<Symbol> {
@@ -183,7 +183,7 @@ impl MetaItem {
183183
if self.path.segments.len() == 1 { Some(self.path.segments[0].ident) } else { None }
184184
}
185185
pub fn name_or_empty(&self) -> Symbol {
186-
self.ident().unwrap_or(Ident::invalid()).name
186+
self.ident().unwrap_or_else(Ident::invalid).name
187187
}
188188

189189
// Example:

compiler/rustc_builtin_macros/src/test_harness.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ fn mk_main(cx: &mut TestCtxt<'_>) -> P<ast::Item> {
282282
let mut test_runner = cx
283283
.test_runner
284284
.clone()
285-
.unwrap_or(ecx.path(sp, vec![test_id, Ident::from_str_and_span(runner_name, sp)]));
285+
.unwrap_or_else(|| ecx.path(sp, vec![test_id, Ident::from_str_and_span(runner_name, sp)]));
286286

287287
test_runner.span = sp;
288288

compiler/rustc_codegen_cranelift/src/bin/cg_clif.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ impl rustc_driver::Callbacks for CraneliftPassesCallbacks {
2727
config.opts.cg.panic = Some(PanicStrategy::Abort);
2828
config.opts.debugging_opts.panic_abort_tests = true;
2929
config.opts.maybe_sysroot = Some(
30-
config.opts.maybe_sysroot.clone().unwrap_or(
31-
std::env::current_exe()
30+
config.opts.maybe_sysroot.clone().unwrap_or_else(
31+
|| std::env::current_exe()
3232
.unwrap()
3333
.parent()
3434
.unwrap()

compiler/rustc_codegen_llvm/src/intrinsic.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -979,12 +979,14 @@ fn generic_simd_intrinsic(
979979

980980
// Integer vector <i{in_bitwidth} x in_len>:
981981
let (i_xn, in_elem_bitwidth) = match in_elem.kind() {
982-
ty::Int(i) => {
983-
(args[0].immediate(), i.bit_width().unwrap_or(bx.data_layout().pointer_size.bits()))
984-
}
985-
ty::Uint(i) => {
986-
(args[0].immediate(), i.bit_width().unwrap_or(bx.data_layout().pointer_size.bits()))
987-
}
982+
ty::Int(i) => (
983+
args[0].immediate(),
984+
i.bit_width().unwrap_or_else(|| bx.data_layout().pointer_size.bits()),
985+
),
986+
ty::Uint(i) => (
987+
args[0].immediate(),
988+
i.bit_width().unwrap_or_else(|| bx.data_layout().pointer_size.bits()),
989+
),
988990
_ => return_error!(
989991
"vector argument `{}`'s element type `{}`, expected integer element type",
990992
in_ty,

compiler/rustc_hir/src/definitions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ impl Definitions {
409409
}
410410

411411
pub fn expansion_that_defined(&self, id: LocalDefId) -> ExpnId {
412-
self.expansions_that_defined.get(&id).copied().unwrap_or(ExpnId::root())
412+
self.expansions_that_defined.get(&id).copied().unwrap_or_else(ExpnId::root)
413413
}
414414

415415
pub fn parent_module_of_macro_def(&self, expn_id: ExpnId) -> DefId {

compiler/rustc_metadata/src/rmeta/decoder.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
856856
.tables
857857
.children
858858
.get(self, index)
859-
.unwrap_or(Lazy::empty())
859+
.unwrap_or_else(Lazy::empty)
860860
.decode(self)
861861
.map(|index| ty::FieldDef {
862862
did: self.local_def_id(index),
@@ -888,7 +888,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
888888
.tables
889889
.children
890890
.get(self, item_id)
891-
.unwrap_or(Lazy::empty())
891+
.unwrap_or_else(Lazy::empty)
892892
.decode(self)
893893
.map(|index| self.get_variant(&self.kind(index), index, did, tcx.sess))
894894
.collect()
@@ -1075,7 +1075,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
10751075

10761076
// Iterate over all children.
10771077
let macros_only = self.dep_kind.lock().macros_only();
1078-
let children = self.root.tables.children.get(self, id).unwrap_or(Lazy::empty());
1078+
let children = self.root.tables.children.get(self, id).unwrap_or_else(Lazy::empty);
10791079
for child_index in children.decode((self, sess)) {
10801080
if macros_only {
10811081
continue;
@@ -1098,7 +1098,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
10981098
.tables
10991099
.children
11001100
.get(self, child_index)
1101-
.unwrap_or(Lazy::empty());
1101+
.unwrap_or_else(Lazy::empty);
11021102
for child_index in child_children.decode((self, sess)) {
11031103
let kind = self.def_kind(child_index);
11041104
callback(Export {
@@ -1284,7 +1284,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
12841284
}
12851285

12861286
fn get_item_variances(&self, id: DefIndex) -> Vec<ty::Variance> {
1287-
self.root.tables.variances.get(self, id).unwrap_or(Lazy::empty()).decode(self).collect()
1287+
self.root.tables.variances.get(self, id).unwrap_or_else(Lazy::empty).decode(self).collect()
12881288
}
12891289

12901290
fn get_ctor_kind(&self, node_id: DefIndex) -> CtorKind {
@@ -1323,7 +1323,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
13231323
.tables
13241324
.attributes
13251325
.get(self, item_id)
1326-
.unwrap_or(Lazy::empty())
1326+
.unwrap_or_else(Lazy::empty)
13271327
.decode((self, sess))
13281328
.collect::<Vec<_>>()
13291329
}
@@ -1333,7 +1333,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
13331333
.tables
13341334
.children
13351335
.get(self, id)
1336-
.unwrap_or(Lazy::empty())
1336+
.unwrap_or_else(Lazy::empty)
13371337
.decode(self)
13381338
.map(|index| respan(self.get_span(index, sess), self.item_ident(index, sess).name))
13391339
.collect()
@@ -1349,7 +1349,7 @@ impl<'a, 'tcx> CrateMetadataRef<'a> {
13491349
.tables
13501350
.inherent_impls
13511351
.get(self, id)
1352-
.unwrap_or(Lazy::empty())
1352+
.unwrap_or_else(Lazy::empty)
13531353
.decode(self)
13541354
.map(|index| self.local_def_id(index)),
13551355
)

compiler/rustc_mir/src/borrow_check/region_infer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
582582
self.check_member_constraints(infcx, &mut errors_buffer);
583583
}
584584

585-
let outlives_requirements = outlives_requirements.unwrap_or(vec![]);
585+
let outlives_requirements = outlives_requirements.unwrap_or_default();
586586

587587
if outlives_requirements.is_empty() {
588588
(None, errors_buffer)

compiler/rustc_session/src/session.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ pub fn build_session(
13051305
early_error(sopts.error_format, &format!("Error loading host specification: {}", e))
13061306
});
13071307

1308-
let loader = file_loader.unwrap_or(Box::new(RealFileLoader));
1308+
let loader = file_loader.unwrap_or_else(|| Box::new(RealFileLoader));
13091309
let hash_kind = sopts.debugging_opts.src_hash_algorithm.unwrap_or_else(|| {
13101310
if target_cfg.is_like_msvc {
13111311
SourceFileHashAlgorithm::Sha1

compiler/rustc_trait_selection/src/traits/select/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
279279
/// tracking is not enabled, just returns an empty vector.
280280
pub fn take_intercrate_ambiguity_causes(&mut self) -> Vec<IntercrateAmbiguityCause> {
281281
assert!(self.intercrate);
282-
self.intercrate_ambiguity_causes.take().unwrap_or(vec![])
282+
self.intercrate_ambiguity_causes.take().unwrap_or_default()
283283
}
284284

285285
pub fn infcx(&self) -> &'cx InferCtxt<'cx, 'tcx> {

compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
118118
closure_def_id: DefId,
119119
) -> Vec<DeferredCallResolution<'tcx>> {
120120
let mut deferred_call_resolutions = self.deferred_call_resolutions.borrow_mut();
121-
deferred_call_resolutions.remove(&closure_def_id).unwrap_or(vec![])
121+
deferred_call_resolutions.remove(&closure_def_id).unwrap_or_default()
122122
}
123123

124124
pub fn tag(&self) -> String {

compiler/rustc_typeck/src/check/method/probe.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
244244
ProbeScope::AllTraits,
245245
|probe_cx| Ok(probe_cx.candidate_method_names()),
246246
)
247-
.unwrap_or(vec![]);
247+
.unwrap_or_default();
248248
method_names
249249
.iter()
250250
.flat_map(|&method_name| {

library/std/src/time.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ impl Instant {
322322
/// ```
323323
#[stable(feature = "checked_duration_since", since = "1.39.0")]
324324
pub fn saturating_duration_since(&self, earlier: Instant) -> Duration {
325-
self.checked_duration_since(earlier).unwrap_or(Duration::new(0, 0))
325+
self.checked_duration_since(earlier).unwrap_or_default()
326326
}
327327

328328
/// Returns the amount of time elapsed since this instant was created.

src/librustdoc/clean/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -935,8 +935,7 @@ impl<'a> Clean<Arguments> for (&'a [hir::Ty<'a>], &'a [Ident]) {
935935
.iter()
936936
.enumerate()
937937
.map(|(i, ty)| {
938-
let mut name =
939-
self.1.get(i).map(|ident| ident.to_string()).unwrap_or(String::new());
938+
let mut name = self.1.get(i).map(|ident| ident.to_string()).unwrap_or_default();
940939
if name.is_empty() {
941940
name = "_".to_string();
942941
}

src/librustdoc/html/render/cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub fn build_index(krate: &clean::Crate, cache: &mut Cache) -> String {
128128
.module
129129
.as_ref()
130130
.map(|module| shorten(plain_text_summary(module.doc_value())))
131-
.unwrap_or(String::new());
131+
.unwrap_or_default();
132132

133133
#[derive(Serialize)]
134134
struct CrateData<'a> {

0 commit comments

Comments
 (0)