Skip to content

Commit e20e506

Browse files
committedNov 28, 2022
Make tcx.mk_const more permissive wrt kind argument
- Accept `impl Into` - Implement `From<>` for `ConstKind` Note: this adds a dependency on `derive_more` (MIT license). It allows to derive a lot of traits (like `From` here) that would be otherwise tedious to implement.
1 parent 8a09420 commit e20e506

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed
 

‎Cargo.lock

+20
Original file line numberDiff line numberDiff line change
@@ -870,6 +870,12 @@ dependencies = [
870870
"memchr",
871871
]
872872

873+
[[package]]
874+
name = "convert_case"
875+
version = "0.4.0"
876+
source = "registry+https://github.com/rust-lang/crates.io-index"
877+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
878+
873879
[[package]]
874880
name = "core"
875881
version = "0.0.0"
@@ -1060,6 +1066,19 @@ dependencies = [
10601066
"syn",
10611067
]
10621068

1069+
[[package]]
1070+
name = "derive_more"
1071+
version = "0.99.17"
1072+
source = "registry+https://github.com/rust-lang/crates.io-index"
1073+
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
1074+
dependencies = [
1075+
"convert_case",
1076+
"proc-macro2",
1077+
"quote",
1078+
"rustc_version",
1079+
"syn",
1080+
]
1081+
10631082
[[package]]
10641083
name = "diff"
10651084
version = "0.1.13"
@@ -3979,6 +3998,7 @@ version = "0.0.0"
39793998
dependencies = [
39803999
"bitflags",
39814000
"chalk-ir",
4001+
"derive_more",
39824002
"either",
39834003
"gsgdt",
39844004
"polonius-engine",

‎compiler/rustc_middle/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ edition = "2021"
88
[dependencies]
99
bitflags = "1.2.1"
1010
chalk-ir = "0.87.0"
11+
derive_more = "0.99.17"
1112
either = "1.5.0"
1213
gsgdt = "0.1.2"
1314
polonius-engine = "0.13.0"

‎compiler/rustc_middle/src/ty/consts/kind.rs

+8
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ impl<'tcx> UnevaluatedConst<'tcx> {
4949
/// Represents a constant in Rust.
5050
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, TyEncodable, TyDecodable)]
5151
#[derive(Hash, HashStable, TypeFoldable, TypeVisitable)]
52+
#[derive(derive_more::From)]
5253
pub enum ConstKind<'tcx> {
5354
/// A const generic parameter.
5455
Param(ty::ParamConst),
@@ -71,12 +72,19 @@ pub enum ConstKind<'tcx> {
7172

7273
/// A placeholder for a const which could not be computed; this is
7374
/// propagated to avoid useless error messages.
75+
#[from(ignore)]
7476
Error(ErrorGuaranteed),
7577

7678
/// Expr which contains an expression which has partially evaluated items.
7779
Expr(Expr<'tcx>),
7880
}
7981

82+
impl<'tcx> From<ty::ConstVid<'tcx>> for ConstKind<'tcx> {
83+
fn from(const_vid: ty::ConstVid<'tcx>) -> Self {
84+
InferConst::Var(const_vid).into()
85+
}
86+
}
87+
8088
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, Hash)]
8189
#[derive(HashStable, TyEncodable, TyDecodable, TypeVisitable, TypeFoldable)]
8290
pub enum Expr<'tcx> {

‎compiler/rustc_middle/src/ty/context.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2598,8 +2598,8 @@ impl<'tcx> TyCtxt<'tcx> {
25982598
}
25992599

26002600
#[inline]
2601-
pub fn mk_const(self, kind: ty::ConstKind<'tcx>, ty: Ty<'tcx>) -> Const<'tcx> {
2602-
self.mk_const_internal(ty::ConstS { kind, ty })
2601+
pub fn mk_const(self, kind: impl Into<ty::ConstKind<'tcx>>, ty: Ty<'tcx>) -> Const<'tcx> {
2602+
self.mk_const_internal(ty::ConstS { kind: kind.into(), ty })
26032603
}
26042604

26052605
#[inline]

0 commit comments

Comments
 (0)