• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Jan-2022-

src/H20-Jan-2022-8,9606,760

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D20-Jan-20221.7 KiB5746

README.mdH A D20-Jan-2022435 107

README.md

1The `rustc_ast` crate contains those things concerned purely with syntax
2– that is, the AST ("abstract syntax tree"), parser, pretty-printer,
3lexer, macro expander, and utilities for traversing ASTs.
4
5For more information about how these things work in rustc, see the
6rustc dev guide:
7
8- [Parsing](https://rustc-dev-guide.rust-lang.org/the-parser.html)
9- [Macro Expansion](https://rustc-dev-guide.rust-lang.org/macro-expansion.html)
10