Skip to content

Commit 454c09e

Browse files
committed
Spruce up the docs of several queries related to the type/trait system and const eval
1 parent f334342 commit 454c09e

File tree

3 files changed

+223
-106
lines changed

3 files changed

+223
-106
lines changed

compiler/rustc_const_eval/src/const_eval/fn_queries.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,14 @@ fn parent_impl_constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness
1515
}
1616
}
1717

18-
/// Checks whether an item is considered to be `const`. If it is a constructor, it is const.
19-
/// If it is an assoc method or function,
20-
/// return if it has a `const` modifier. If it is an intrinsic, report whether said intrinsic
21-
/// has a `rustc_const_{un,}stable` attribute. Otherwise, panic.
18+
/// Checks whether a function-like definition is considered to be `const`.
2219
fn constness(tcx: TyCtxt<'_>, def_id: LocalDefId) -> hir::Constness {
2320
let node = tcx.hir_node_by_def_id(def_id);
2421

2522
match node {
26-
hir::Node::Ctor(hir::VariantData::Tuple(..))
27-
| hir::Node::ImplItem(hir::ImplItem { kind: hir::ImplItemKind::Const(..), .. }) => {
28-
hir::Constness::Const
29-
}
30-
hir::Node::ForeignItem(_) => {
31-
// Foreign items cannot be evaluated at compile-time.
23+
hir::Node::Ctor(hir::VariantData::Tuple(..)) => hir::Constness::Const,
24+
hir::Node::ForeignItem(item) if let hir::ForeignItemKind::Fn(..) = item.kind => {
25+
// Foreign functions cannot be evaluated at compile-time.
3226
hir::Constness::NotConst
3327
}
3428
hir::Node::Expr(e) if let hir::ExprKind::Closure(c) = e.kind => c.constness,

0 commit comments

Comments
 (0)