42 lines
1.2 KiB
Rust
42 lines
1.2 KiB
Rust
// tidy-alphabetical-start
|
|
#![feature(assert_matches)]
|
|
#![feature(associated_type_defaults)]
|
|
#![feature(box_patterns)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(file_buffered)]
|
|
#![feature(let_chains)]
|
|
#![feature(never_type)]
|
|
#![feature(try_blocks)]
|
|
// tidy-alphabetical-end
|
|
|
|
use rustc_middle::ty;
|
|
|
|
// Please change the public `use` directives cautiously, as they might be used by external tools.
|
|
// See issue #120130.
|
|
pub use self::drop_flag_effects::{
|
|
DropFlagState, drop_flag_effects_for_function_entry, drop_flag_effects_for_location,
|
|
move_path_children_matching, on_all_children_bits, on_lookup_result_bits,
|
|
};
|
|
pub use self::framework::{
|
|
Analysis, Backward, Direction, EntryStates, Forward, GenKill, JoinSemiLattice, MaybeReachable,
|
|
Results, ResultsCursor, ResultsVisitor, fmt, graphviz, lattice, visit_results,
|
|
};
|
|
use self::move_paths::MoveData;
|
|
|
|
pub mod debuginfo;
|
|
mod drop_flag_effects;
|
|
mod errors;
|
|
mod framework;
|
|
pub mod impls;
|
|
pub mod move_paths;
|
|
pub mod points;
|
|
pub mod rustc_peek;
|
|
mod un_derefer;
|
|
pub mod value_analysis;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
|
|
|
pub struct MoveDataTypingEnv<'tcx> {
|
|
pub move_data: MoveData<'tcx>,
|
|
pub typing_env: ty::TypingEnv<'tcx>,
|
|
}
|