Update use statements in dataflow/mod.rs
This commit is contained in:
parent
bae1114e75
commit
93ce5ff587
@ -5,17 +5,20 @@ use rustc_index::vec::Idx;
|
|||||||
use rustc_span::symbol::{sym, Symbol};
|
use rustc_span::symbol::{sym, Symbol};
|
||||||
|
|
||||||
pub(crate) use self::drop_flag_effects::*;
|
pub(crate) use self::drop_flag_effects::*;
|
||||||
pub use self::impls::borrows::Borrows;
|
pub use self::framework::{
|
||||||
pub use self::impls::DefinitelyInitializedPlaces;
|
visit_results, Analysis, AnalysisDomain, BorrowckFlowState, BorrowckResults, Engine, GenKill,
|
||||||
pub use self::impls::EverInitializedPlaces;
|
GenKillAnalysis, Results, ResultsCursor, ResultsRefCursor, ResultsVisitor,
|
||||||
pub use self::impls::{MaybeBorrowedLocals, MaybeMutBorrowedLocals};
|
};
|
||||||
pub use self::impls::{MaybeInitializedPlaces, MaybeUninitializedPlaces};
|
pub use self::impls::{
|
||||||
pub use self::impls::{MaybeRequiresStorage, MaybeStorageLive};
|
borrows::Borrows, DefinitelyInitializedPlaces, EverInitializedPlaces, MaybeBorrowedLocals,
|
||||||
|
MaybeInitializedPlaces, MaybeMutBorrowedLocals, MaybeRequiresStorage, MaybeStorageLive,
|
||||||
|
MaybeUninitializedPlaces,
|
||||||
|
};
|
||||||
|
|
||||||
use self::move_paths::MoveData;
|
use self::move_paths::MoveData;
|
||||||
|
|
||||||
pub mod drop_flag_effects;
|
pub mod drop_flag_effects;
|
||||||
pub mod generic;
|
pub mod framework;
|
||||||
mod impls;
|
mod impls;
|
||||||
pub mod move_paths;
|
pub mod move_paths;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user