[red-knot] Extract red_knot_python_semantic crate (#11926)

This commit is contained in:
Micha Reiser 2024-06-20 12:24:24 +01:00 committed by GitHub
parent ed948eaefb
commit 2dfbf118d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 125 additions and 94 deletions

View file

@ -0,0 +1,13 @@
pub mod ast_node_ref;
mod db;
pub mod module;
pub mod name;
mod node_key;
pub mod semantic_index;
pub mod types;
type FxIndexSet<V> = indexmap::set::IndexSet<V, BuildHasherDefault<FxHasher>>;
pub use db::{Db, Jar};
use rustc_hash::FxHasher;
use std::hash::BuildHasherDefault;