]> git.lizzy.rs Git - rust.git/blob - src/librustc_ast_passes/lib.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.git] / src / librustc_ast_passes / lib.rs
1 #![feature(bindings_after_at)]
2 //! The `rustc_ast_passes` crate contains passes which validate the AST in `syntax`
3 //! parsed by `rustc_parse` and then lowered, after the passes in this crate,
4 //! by `rustc_ast_lowering`.
5 //!
6 //! The crate also contains other misc AST visitors, e.g. `node_count` and `show_span`.
7
8 pub mod ast_validation;
9 pub mod feature_gate;
10 pub mod node_count;
11 pub mod show_span;