2020-01-05 03:58:44 -06:00
|
|
|
//! The `rustc_ast_passes` crate contains passes which validate the AST in `syntax`
|
|
|
|
//! parsed by `rustc_parse` and then lowered, after the passes in this crate,
|
|
|
|
//! by `rustc_ast_lowering`.
|
|
|
|
|
2019-12-29 17:32:02 -06:00
|
|
|
#![cfg_attr(bootstrap, feature(slice_patterns))]
|
2020-01-05 03:58:44 -06:00
|
|
|
|
|
|
|
pub mod ast_validation;
|
2020-01-05 04:11:39 -06:00
|
|
|
pub mod feature_gate;
|
2020-01-05 04:21:26 -06:00
|
|
|
pub mod show_span;
|