Skip to content

Commit fa41f19

Browse files
committed
Auto merge of #17312 - regexident:function-fn-ptr-type, r=Veykril
Add `Function::fn_ptr_type(…)` for obtaining name-erased function type The use case of this function if being able to group functions by their function ptr type. cc `@flodiebold`
2 parents fcde6c9 + 88f125e commit fa41f19

File tree

1 file changed

+8
-0
lines changed
  • src/tools/rust-analyzer/crates/hir/src

1 file changed

+8
-0
lines changed

src/tools/rust-analyzer/crates/hir/src/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1884,6 +1884,14 @@ impl Function {
18841884
Type::from_value_def(db, self.id)
18851885
}
18861886

1887+
pub fn fn_ptr_type(self, db: &dyn HirDatabase) -> Type {
1888+
let resolver = self.id.resolver(db.upcast());
1889+
let substs = TyBuilder::placeholder_subst(db, self.id);
1890+
let callable_sig = db.callable_item_signature(self.id.into()).substitute(Interner, &substs);
1891+
let ty = TyKind::Function(callable_sig.to_fn_ptr()).intern(Interner);
1892+
Type::new_with_resolver_inner(db, &resolver, ty)
1893+
}
1894+
18871895
/// Get this function's return type
18881896
pub fn ret_type(self, db: &dyn HirDatabase) -> Type {
18891897
let resolver = self.id.resolver(db.upcast());

0 commit comments

Comments
 (0)