Remove unused code from remaining compiler crates
This commit is contained in:
parent
58b3923ad3
commit
215cd36e1c
13 changed files with 0 additions and 221 deletions
|
@ -44,9 +44,6 @@ pub trait PpAnn {
|
|||
fn nested(&self, _state: &mut State<'_>, _nested: Nested) {}
|
||||
fn pre(&self, _state: &mut State<'_>, _node: AnnNode<'_>) {}
|
||||
fn post(&self, _state: &mut State<'_>, _node: AnnNode<'_>) {}
|
||||
fn try_fetch_item(&self, _: hir::HirId) -> Option<&hir::Item<'_>> {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
pub struct NoAnn;
|
||||
|
@ -54,9 +51,6 @@ impl PpAnn for NoAnn {}
|
|||
pub const NO_ANN: &dyn PpAnn = &NoAnn;
|
||||
|
||||
impl PpAnn for hir::Crate<'_> {
|
||||
fn try_fetch_item(&self, item: hir::HirId) -> Option<&hir::Item<'_>> {
|
||||
Some(self.item(item))
|
||||
}
|
||||
fn nested(&self, state: &mut State<'_>, nested: Nested) {
|
||||
match nested {
|
||||
Nested::Item(id) => state.print_item(self.item(id.id)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue