about summary refs log tree commit diff
path: root/compiler/rustc_ast_passes/src/lib.rs
blob: 47666670b2b63dbb2f2fbbe714e278011e1da4d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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`.
//!
//! The crate also contains other misc AST visitors, e.g. `node_count` and `show_span`.

#![feature(iter_is_partitioned)]
#![feature(box_patterns)]
#![recursion_limit = "256"]

pub mod ast_validation;
pub mod feature_gate;
pub mod node_count;
pub mod show_span;