From 33b62be8626b28f3c6fa0e6186ad114c452bc966 Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Wed, 6 Nov 2019 11:43:33 -0800 Subject: [PATCH] Get `FnSig` by `HirId` --- src/librustc/hir/map/mod.rs | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/src/librustc/hir/map/mod.rs b/src/librustc/hir/map/mod.rs index d7b1676c1d4..83372dd8ade 100644 --- a/src/librustc/hir/map/mod.rs +++ b/src/librustc/hir/map/mod.rs @@ -79,6 +79,33 @@ fn fn_decl(&self) -> Option<&'hir FnDecl> { } } + fn fn_sig(&self) -> Option<&'hir FnSig> { + match &self.node { + Node::Item(item) => { + match &item.kind { + ItemKind::Fn(sig, _, _) => Some(sig), + _ => None, + } + } + + Node::TraitItem(item) => { + match &item.kind { + TraitItemKind::Method(sig, _) => Some(sig), + _ => None + } + } + + Node::ImplItem(item) => { + match &item.kind { + ImplItemKind::Method(sig, _) => Some(sig), + _ => None, + } + } + + _ => None, + } + } + fn associated_body(self) -> Option { match self.node { Node::Item(item) => { @@ -450,6 +477,14 @@ pub fn fn_decl_by_hir_id(&self, hir_id: HirId) -> Option<&'hir FnDecl> { } } + pub fn fn_sig_by_hir_id(&self, hir_id: HirId) -> Option<&'hir FnSig> { + if let Some(entry) = self.find_entry(hir_id) { + entry.fn_sig() + } else { + bug!("no entry for hir_id `{}`", hir_id) + } + } + /// Returns the `HirId` that corresponds to the definition of /// which this is the body of, i.e., a `fn`, `const` or `static` /// item (possibly associated), a closure, or a `hir::AnonConst`. -- 2.44.0