[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

@ -2,17 +2,10 @@ pub mod analyze;
mod binding;
mod branches;
mod context;
#[cfg(feature = "red_knot")]
mod db;
mod definition;
mod globals;
mod model;
#[cfg(feature = "red_knot")]
pub mod module;
pub mod name;
mod nodes;
#[cfg(feature = "red_knot")]
pub mod red_knot;
mod reference;
mod scope;
mod star_import;
@ -27,6 +20,3 @@ pub use nodes::*;
pub use reference::*;
pub use scope::*;
pub use star_import::*;
#[cfg(feature = "red_knot")]
pub use db::{Db, Jar};