Skip to content

Commit 5ce733a

Browse files
authored
Rollup merge of rust-lang#89990 - petrochenkov:idempty, r=wesleywiser
rustc_span: `Ident::invalid` -> `Ident::empty` The equivalent for `Symbol`s was renamed some time ago (`kw::Invalid` -> `kw::Empty`), and it makes sense to do the same thing for `Ident`s as well.
2 parents dabfe6c + a680833 commit 5ce733a

File tree

20 files changed

+34
-35
lines changed

20 files changed

+34
-35
lines changed

compiler/rustc_ast/src/attr/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl NestedMetaItem {
6262
self.meta_item().and_then(|meta_item| meta_item.ident())
6363
}
6464
pub fn name_or_empty(&self) -> Symbol {
65-
self.ident().unwrap_or_else(Ident::invalid).name
65+
self.ident().unwrap_or_else(Ident::empty).name
6666
}
6767

6868
/// Gets the string value if `self` is a `MetaItem` and the `MetaItem` is a
@@ -131,7 +131,7 @@ impl Attribute {
131131
}
132132
}
133133
pub fn name_or_empty(&self) -> Symbol {
134-
self.ident().unwrap_or_else(Ident::invalid).name
134+
self.ident().unwrap_or_else(Ident::empty).name
135135
}
136136

137137
pub fn value_str(&self) -> Option<Symbol> {
@@ -166,7 +166,7 @@ impl MetaItem {
166166
if self.path.segments.len() == 1 { Some(self.path.segments[0].ident) } else { None }
167167
}
168168
pub fn name_or_empty(&self) -> Symbol {
169-
self.ident().unwrap_or_else(Ident::invalid).name
169+
self.ident().unwrap_or_else(Ident::empty).name
170170
}
171171

172172
// Example:

compiler/rustc_ast/src/mut_visit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ pub fn noop_visit_crate<T: MutVisitor>(krate: &mut Crate, vis: &mut T) {
10601060
let item_vis =
10611061
Visibility { kind: VisibilityKind::Public, span: span.shrink_to_lo(), tokens: None };
10621062
let item = P(Item {
1063-
ident: Ident::invalid(),
1063+
ident: Ident::empty(),
10641064
attrs,
10651065
id: DUMMY_NODE_ID,
10661066
vis: item_vis,

compiler/rustc_ast_lowering/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
14351435
trace!("registering opaque type with id {:#?}", opaque_ty_id);
14361436
let opaque_ty_item = hir::Item {
14371437
def_id: opaque_ty_id,
1438-
ident: Ident::invalid(),
1438+
ident: Ident::empty(),
14391439
kind: opaque_ty_item_kind,
14401440
vis: respan(self.lower_span(span.shrink_to_lo()), hir::VisibilityKind::Inherited),
14411441
span: self.lower_span(opaque_ty_span),

compiler/rustc_builtin_macros/src/asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ pub fn expand_global_asm<'cx>(
812812
Ok(args) => {
813813
if let Some(inline_asm) = expand_preparsed_asm(ecx, args) {
814814
MacEager::items(smallvec![P(ast::Item {
815-
ident: Ident::invalid(),
815+
ident: Ident::empty(),
816816
attrs: Vec::new(),
817817
id: ast::DUMMY_NODE_ID,
818818
kind: ast::ItemKind::GlobalAsm(inline_asm),

compiler/rustc_builtin_macros/src/derive.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ impl MultiItemModifier for Expander {
8585
fn dummy_annotatable() -> Annotatable {
8686
Annotatable::GenericParam(ast::GenericParam {
8787
id: ast::DUMMY_NODE_ID,
88-
ident: Ident::invalid(),
88+
ident: Ident::empty(),
8989
attrs: Default::default(),
9090
bounds: Default::default(),
9191
is_placeholder: false,

compiler/rustc_builtin_macros/src/deriving/generic/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ impl<'a> TraitDef<'a> {
724724

725725
cx.item(
726726
self.span,
727-
Ident::invalid(),
727+
Ident::empty(),
728728
a,
729729
ast::ItemKind::Impl(Box::new(ast::ImplKind {
730730
unsafety,

compiler/rustc_builtin_macros/src/deriving/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ fn inject_impl_of_structural_trait(
178178

179179
let newitem = cx.item(
180180
span,
181-
Ident::invalid(),
181+
Ident::empty(),
182182
attrs,
183183
ItemKind::Impl(Box::new(ImplKind {
184184
unsafety: ast::Unsafe::No,

compiler/rustc_builtin_macros/src/standard_library_imports.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pub fn inject(
7777

7878
let use_item = cx.item(
7979
span,
80-
Ident::invalid(),
80+
Ident::empty(),
8181
vec![cx.attribute(cx.meta_word(span, sym::prelude_import))],
8282
ast::ItemKind::Use(ast::UseTree {
8383
prefix: cx.path(span, import_path),

compiler/rustc_expand/src/expand.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ impl<'a, 'b> MacroExpander<'a, 'b> {
383383
Unsafe::No,
384384
ModKind::Loaded(krate.items, Inline::Yes, krate.span)
385385
),
386-
ident: Ident::invalid(),
386+
ident: Ident::empty(),
387387
id: ast::DUMMY_NODE_ID,
388388
vis: ast::Visibility {
389389
span: krate.span.shrink_to_lo(),
@@ -1426,7 +1426,7 @@ impl<'a, 'b> MutVisitor for InvocationCollector<'a, 'b> {
14261426
_ => unreachable!(),
14271427
})
14281428
}
1429-
ast::ItemKind::Mod(_, ref mut mod_kind) if ident != Ident::invalid() => {
1429+
ast::ItemKind::Mod(_, ref mut mod_kind) if ident != Ident::empty() => {
14301430
let (file_path, dir_path, dir_ownership) = match mod_kind {
14311431
ModKind::Loaded(_, inline, _) => {
14321432
// Inline `mod foo { ... }`, but we still need to push directories.
@@ -1508,7 +1508,7 @@ impl<'a, 'b> MutVisitor for InvocationCollector<'a, 'b> {
15081508
_ => {
15091509
item.attrs = attrs;
15101510
// The crate root is special - don't assign an ID to it.
1511-
if !(matches!(item.kind, ast::ItemKind::Mod(..)) && ident == Ident::invalid()) {
1511+
if !(matches!(item.kind, ast::ItemKind::Mod(..)) && ident == Ident::empty()) {
15121512
assign_id!(self, &mut item.id, || noop_flat_map_item(item, self))
15131513
} else {
15141514
noop_flat_map_item(item, self)

compiler/rustc_expand/src/mbe/quoted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ fn parse_tree(
204204
pprust::token_to_string(&token),
205205
);
206206
sess.span_diagnostic.span_err(token.span, &msg);
207-
TokenTree::MetaVar(token.span, Ident::invalid())
207+
TokenTree::MetaVar(token.span, Ident::empty())
208208
}
209209

210210
// There are no more tokens. Just return the `$` we already have.

compiler/rustc_expand/src/placeholders.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn placeholder(
2323
}
2424
}
2525

26-
let ident = Ident::invalid();
26+
let ident = Ident::empty();
2727
let attrs = Vec::new();
2828
let vis = vis.unwrap_or(ast::Visibility {
2929
span: DUMMY_SP,

compiler/rustc_hir/src/hir.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl LifetimeName {
121121
match *self {
122122
LifetimeName::ImplicitObjectLifetimeDefault
123123
| LifetimeName::Implicit
124-
| LifetimeName::Error => Ident::invalid(),
124+
| LifetimeName::Error => Ident::empty(),
125125
LifetimeName::Underscore => Ident::with_dummy_span(kw::UnderscoreLifetime),
126126
LifetimeName::Static => Ident::with_dummy_span(kw::StaticLifetime),
127127
LifetimeName::Param(param_name) => param_name.ident(),
@@ -233,7 +233,7 @@ impl<'hir> PathSegment<'hir> {
233233
}
234234

235235
pub fn invalid() -> Self {
236-
Self::from_ident(Ident::invalid())
236+
Self::from_ident(Ident::empty())
237237
}
238238

239239
pub fn args(&self) -> &GenericArgs<'hir> {
@@ -310,7 +310,7 @@ impl GenericArg<'_> {
310310
}
311311

312312
pub fn is_synthetic(&self) -> bool {
313-
matches!(self, GenericArg::Lifetime(lifetime) if lifetime.name.ident() == Ident::invalid())
313+
matches!(self, GenericArg::Lifetime(lifetime) if lifetime.name.ident() == Ident::empty())
314314
}
315315

316316
pub fn descr(&self) -> &'static str {

compiler/rustc_middle/src/hir/map/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ impl<'hir> Map<'hir> {
443443
pub fn body_param_names(&self, id: BodyId) -> impl Iterator<Item = Ident> + 'hir {
444444
self.body(id).params.iter().map(|arg| match arg.pat.kind {
445445
PatKind::Binding(_, _, ident, _) => ident,
446-
_ => Ident::new(kw::Empty, rustc_span::DUMMY_SP),
446+
_ => Ident::empty(),
447447
})
448448
}
449449

compiler/rustc_parse/src/parser/item.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ impl<'a> Parser<'a> {
216216
return Err(e);
217217
}
218218

219-
(Ident::invalid(), ItemKind::Use(tree))
219+
(Ident::empty(), ItemKind::Use(tree))
220220
} else if self.check_fn_front_matter(def_final) {
221221
// FUNCTION ITEM
222222
let (ident, sig, generics, body) = self.parse_fn(attrs, req_name, lo)?;
@@ -287,7 +287,7 @@ impl<'a> Parser<'a> {
287287
return Ok(None);
288288
} else if macros_allowed && self.check_path() {
289289
// MACRO INVOCATION ITEM
290-
(Ident::invalid(), ItemKind::MacCall(self.parse_item_macro(vis)?))
290+
(Ident::empty(), ItemKind::MacCall(self.parse_item_macro(vis)?))
291291
} else {
292292
return Ok(None);
293293
};
@@ -586,7 +586,7 @@ impl<'a> Parser<'a> {
586586
}
587587
};
588588

589-
Ok((Ident::invalid(), item_kind))
589+
Ok((Ident::empty(), item_kind))
590590
}
591591

592592
fn parse_item_list<T>(
@@ -933,7 +933,7 @@ impl<'a> Parser<'a> {
933933
let abi = self.parse_abi(); // ABI?
934934
let items = self.parse_item_list(attrs, |p| p.parse_foreign_item(ForceCollect::No))?;
935935
let module = ast::ForeignMod { unsafety, abi, items };
936-
Ok((Ident::invalid(), ItemKind::ForeignMod(module)))
936+
Ok((Ident::empty(), ItemKind::ForeignMod(module)))
937937
}
938938

939939
/// Parses a foreign item (one in an `extern { ... }` block).

compiler/rustc_resolve/src/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
13271327
if fst.ident.span.rust_2018() && !fst.ident.is_path_segment_keyword() =>
13281328
{
13291329
// Insert a placeholder that's later replaced by `self`/`super`/etc.
1330-
path.insert(0, Segment::from_ident(Ident::invalid()));
1330+
path.insert(0, Segment::from_ident(Ident::empty()));
13311331
}
13321332
_ => return None,
13331333
}

compiler/rustc_resolve/src/imports.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
978978
// HACK(eddyb) `lint_if_path_starts_with_module` needs at least
979979
// 2 segments, so the `resolve_path` above won't trigger it.
980980
let mut full_path = import.module_path.clone();
981-
full_path.push(Segment::from_ident(Ident::invalid()));
981+
full_path.push(Segment::from_ident(Ident::empty()));
982982
self.r.lint_if_path_starts_with_module(
983983
import.crate_lint(),
984984
&full_path,

compiler/rustc_span/src/symbol.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1453,7 +1453,7 @@ impl Ident {
14531453
}
14541454

14551455
#[inline]
1456-
pub fn invalid() -> Ident {
1456+
pub fn empty() -> Ident {
14571457
Ident::with_dummy_span(kw::Empty)
14581458
}
14591459

src/tools/clippy/tests/ui-internal/unnecessary_symbol_str.fixed

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ fn main() {
1111
Symbol::intern("foo") == rustc_span::sym::clippy;
1212
Symbol::intern("foo") == rustc_span::symbol::kw::SelfLower;
1313
Symbol::intern("foo") != rustc_span::symbol::kw::SelfUpper;
14-
Ident::invalid().name == rustc_span::sym::clippy;
15-
rustc_span::sym::clippy == Ident::invalid().name;
14+
Ident::empty().name == rustc_span::sym::clippy;
15+
rustc_span::sym::clippy == Ident::empty().name;
1616
}

src/tools/clippy/tests/ui-internal/unnecessary_symbol_str.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ fn main() {
1111
Symbol::intern("foo").as_str() == "clippy";
1212
Symbol::intern("foo").to_string() == "self";
1313
Symbol::intern("foo").to_ident_string() != "Self";
14-
&*Ident::invalid().as_str() == "clippy";
15-
"clippy" == Ident::invalid().to_string();
14+
&*Ident::empty().as_str() == "clippy";
15+
"clippy" == Ident::empty().to_string();
1616
}

src/tools/clippy/tests/ui-internal/unnecessary_symbol_str.stderr

+4-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,13 @@ LL | Symbol::intern("foo").to_ident_string() != "Self";
2626
error: unnecessary `Symbol` to string conversion
2727
--> $DIR/unnecessary_symbol_str.rs:14:5
2828
|
29-
LL | &*Ident::invalid().as_str() == "clippy";
30-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Ident::invalid().name == rustc_span::sym::clippy`
29+
LL | &*Ident::empty().as_str() == "clippy";
30+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `Ident::empty().name == rustc_span::sym::clippy`
3131

3232
error: unnecessary `Symbol` to string conversion
3333
--> $DIR/unnecessary_symbol_str.rs:15:5
3434
|
35-
LL | "clippy" == Ident::invalid().to_string();
36-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `rustc_span::sym::clippy == Ident::invalid().name`
35+
LL | "clippy" == Ident::empty().to_string();
36+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `rustc_span::sym::clippy == Ident::empty().name`
3737

3838
error: aborting due to 5 previous errors
39-

0 commit comments

Comments
 (0)