mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
// tidy-alphabetical-start
|
|
#![cfg_attr(bootstrap, feature(assert_matches))]
|
|
#![feature(associated_type_defaults)]
|
|
#![feature(box_patterns)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(file_buffered)]
|
|
#![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_reachable_results,
|
|
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;
|
|
|
|
pub struct MoveDataTypingEnv<'tcx> {
|
|
pub move_data: MoveData<'tcx>,
|
|
pub typing_env: ty::TypingEnv<'tcx>,
|
|
}
|