Skip to content

Commit

Permalink
Auto merge of #11983 - jhpratt:remove-rustc_deprecated, r=lnicola
Browse files Browse the repository at this point in the history
Remove handling of `#[rustc_deprecated]`

This should be merged along with rust-lang/rust#95960.

Because the attribute still exists in rustc, I've left the definition here. With that said, any use of it is an error, so I've removed any handling of `#[rustc_deprecated]`.
  • Loading branch information
bors committed May 9, 2022
2 parents 5d5bbec + 3c376e5 commit 3d2d209
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
1 change: 1 addition & 0 deletions crates/hir-def/src/builtin_attr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
ungated!(feature, CrateLevel, template!(List: "name1, name1, ...")),
// FIXME(#14407) -- only looked at on-demand so we can't
// guarantee they'll have already been checked.
// FIXME(jhpratt) remove this when #[rustc_deprecated] is fully removed from the compiler
ungated!(
rustc_deprecated, AssumedUsed,
template!(List: r#"since = "version", reason = "...""#)
Expand Down
24 changes: 5 additions & 19 deletions crates/ide-completion/src/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl<'a> RenderContext<'a> {

fn is_deprecated(&self, def: impl HasAttrs) -> bool {
let attrs = def.attrs(self.db());
attrs.by_key("deprecated").exists() || attrs.by_key("rustc_deprecated").exists()
attrs.by_key("deprecated").exists()
}

fn is_deprecated_assoc_item(&self, as_assoc_item: impl AsAssocItem) -> bool {
Expand Down Expand Up @@ -675,8 +675,6 @@ fn main() { let _: m::Spam = S$0 }
r#"
#[deprecated]
fn something_deprecated() {}
#[rustc_deprecated(since = "1.0.0")]
fn something_else_deprecated() {}
fn main() { som$0 }
"#,
Expand All @@ -685,8 +683,8 @@ fn main() { som$0 }
[
CompletionItem {
label: "main()",
source_range: 127..130,
delete: 127..130,
source_range: 56..59,
delete: 56..59,
insert: "main()$0",
kind: SymbolKind(
Function,
Expand All @@ -696,8 +694,8 @@ fn main() { som$0 }
},
CompletionItem {
label: "something_deprecated()",
source_range: 127..130,
delete: 127..130,
source_range: 56..59,
delete: 56..59,
insert: "something_deprecated()$0",
kind: SymbolKind(
Function,
Expand All @@ -706,18 +704,6 @@ fn main() { som$0 }
detail: "fn()",
deprecated: true,
},
CompletionItem {
label: "something_else_deprecated()",
source_range: 127..130,
delete: 127..130,
insert: "something_else_deprecated()$0",
kind: SymbolKind(
Function,
),
lookup: "something_else_deprecated",
detail: "fn()",
deprecated: true,
},
]
"#]],
);
Expand Down

0 comments on commit 3d2d209

Please sign in to comment.