rust/crates/rust-analyzer
bors dcd31550e2 Auto merge of #14932 - HKalbasi:dev, r=HKalbasi
Lower const params with a bad id

cc #7434

This PR adds an `InTypeConstId` which is a `DefWithBodyId` and lower const generic parameters into bodies using it, and evaluate them with the mir interpreter. I think this is the last unimplemented const generic feature relative to rustc stable.

But there is a problem: The id used in the `InTypeConstId` is the raw `FileAstId`, which changes frequently. So these ids and their bodies will be invalidated very frequently, which is bad for incremental analysis.

Due this problem, I disabled lowering for local crates (in library crate the id is stable since files won't be changed). This might be overreacting (const generic expressions are usually small, maybe it would be better enabled with bad performance than disabled) but it makes motivation for doing it in the correct way, and it splits the potential panic and breakages that usually comes with const generic PRs in two steps.

Other than the id, I think (at least I hope) other parts are in the right direction.
2023-06-12 08:49:02 +00:00
..
src Auto merge of #14932 - HKalbasi:dev, r=HKalbasi 2023-06-12 08:49:02 +00:00
tests/slow-tests fix: Fix proc-macro slow test 2023-06-07 07:03:27 +02:00
build.rs Fix typo in build.rs 2022-06-26 10:09:45 +00:00
Cargo.toml Fix dependency warning 2023-06-07 12:34:38 +03:00