]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast_passes/src/lib.rs
Rollup merge of #84464 - jyn514:type-kind, r=CraftSpider
[rust.git] / compiler / rustc_ast_passes / src / lib.rs
1 //! The `rustc_ast_passes` crate contains passes which validate the AST in `syntax`
2 //! parsed by `rustc_parse` and then lowered, after the passes in this crate,
3 //! by `rustc_ast_lowering`.
4 //!
5 //! The crate also contains other misc AST visitors, e.g. `node_count` and `show_span`.
6
7 #![feature(bindings_after_at)]
8 #![feature(iter_is_partitioned)]
9 #![feature(box_syntax)]
10 #![feature(box_patterns)]
11 #![recursion_limit = "256"]
12
13 pub mod ast_validation;
14 pub mod feature_gate;
15 pub mod node_count;
16 pub mod show_span;