Files
rust/compiler/rustc_ast
Jonathan Brouwer 9a90ad485e Rollup merge of #152733 - Ozzy1423:attr-doc, r=jdonszelmann
Port #[rustc_doc_primitive] to the new attribute parser

Tracking issue: https://github.com/rust-lang/rust/issues/131229

r? @JonathanBrouwer
2026-02-19 10:56:39 +01:00
..

The rustc_ast crate contains those things concerned purely with syntax that is, the AST ("abstract syntax tree"), along with some definitions for tokens and token streams, data structures/traits for mutating ASTs, and shared definitions for other AST-related parts of the compiler (like the lexer and macro-expansion).

For more information about how these things work in rustc, see the rustc dev guide: