mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-30 13:51:16 +00:00
[red-knot] Don't use separate ID types for each alist (#16415)
Regardless of whether #16408 and #16311 pan out, this part is worth pulling out as a separate PR. Before, you had to define a new `IndexVec` index type for each type of association list you wanted to create. Now there's a single index type that's internal to the alist implementation, and you use `List<K, V>` to store a handle to a particular list. This also adds some property tests for the alist implementation.
This commit is contained in:
parent
fdf0915283
commit
ba44e9de13
7 changed files with 768 additions and 790 deletions
|
@ -4,7 +4,6 @@
|
|||
//! Inspired by [rustc_index](https://github.com/rust-lang/rust/blob/master/compiler/rustc_index/src/lib.rs).
|
||||
|
||||
mod idx;
|
||||
pub mod list;
|
||||
mod slice;
|
||||
mod vec;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue